如何在发布/订阅主题上使用IoT遥测事件?

时间:2018-11-25 22:26:21

标签: google-cloud-platform iot google-cloud-pubsub android-things telemetry

我已阅读documentation有关Google云物联网API的信息。而且我已经为Android编写了一个简单的应用程序。基于此Google的library。我的应用程序已成功连接到IoT平台,并且已经发送了测试数据。

我的应用程序代码。

ConnectionParams connectionParams = new ConnectionParams.Builder()
            .setProjectId("my_pid")
            .setRegistry("my_reg", "my_server")
            .setDeviceId("my_device_name")
            .build();
IotCoreClient client = new IotCoreClient.Builder()
            .setConnectionParams(connectionParams)
            .setKeyPair(keys)
            .setTelemetryQueue(new LinkedTransferQueue<TelemetryEvent>())
            .build();

client.connect();

client.publishDeviceState("Test data\n".getBytes());

client.publishTelemetry(new TelemetryEvent("Sonata".getBytes(), null,TelemetryEvent.QOS_AT_LEAST_ONCE));

但是有一种方法可以将设备传感器数据发送到IoT平台(“ publishTelemetry(Parms ...))。

client.publishTelemetry(new TelemetryEvent("Sonata".getBytes(), null,TelemetryEvent.QOS_AT_LEAST_ONCE));

此代码有效,但是我无法在Google Cloud Platform中找到此数据“ Sonata”,并且我不明白如何在发布/订阅主题上使用遥测事件?

已更新

我找到了解决方案。首先,我已将订阅者添加到主题。例。主题projects/my-project-id/topics/firstTop示例订户(fsub是订户名称)projects/my-project-id/subscriptions/fsub我用Java编写了简单的订户代码,并从Android of Things设备发送了消息。而且我有遥测数据。

这是Java中的订户代码

import com.google.api.gax.core.CredentialsProvider;
import com.google.auth.Credentials;
import com.google.auth.oauth2.GoogleCredentials;
import com.google.cloud.pubsub.v1.AckReplyConsumer;
import com.google.cloud.pubsub.v1.MessageReceiver;
import com.google.cloud.pubsub.v1.Subscriber;
import com.google.common.collect.Lists;
import com.google.pubsub.v1.ProjectSubscriptionName;
import com.google.pubsub.v1.PubsubMessage;

import java.io.FileInputStream;
import java.io.IOException;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.LinkedBlockingDeque;

public class SubscriberExample {
    private static final String PROJECT_ID = "my-project-id";
    private static final BlockingQueue<PubsubMessage> messages = new LinkedBlockingDeque<>();

    static class MessageReceiverExample implements MessageReceiver {
        @Override
        public void receiveMessage(PubsubMessage message, AckReplyConsumer consumer) {
            messages.offer(message);
            consumer.ack();
        }
    }

    public static void main(String... args) throws Exception {
        String subscriptionId = "YOUR_SUBSCRIBER_ID";
        ProjectSubscriptionName subscriptionName = ProjectSubscriptionName.of(PROJECT_ID, subscriptionId);
        Subscriber subscriber = null;
        try {
            GoogleCredentials credentials = GoogleCredentials
                    .fromStream(new FileInputStream("~/google_cloud_pubsub-Project-0b66ab8c5060.json")) // you can get here https://cloud.google.com/docs/authentication/getting-started
                    .createScoped(Lists.newArrayList("https://www.googleapis.com/auth/cloud-platform"));
            subscriber = Subscriber.newBuilder(subscriptionName, new MessageReceiverExample())
                    .setCredentialsProvider(new CredentialsProvider() {
                        @Override
                        public Credentials getCredentials() throws IOException {
                            return credentials;
                        }
                    }).build();
            subscriber.startAsync().awaitRunning();
            while (true) {
                PubsubMessage message = messages.take();
                System.out.println("Message Id: " + message.getMessageId());
                System.out.println("Data: " + message.getData().toStringUtf8());
            }
        } finally {
            if (subscriber != null) {
                subscriber.stopAsync();
            }
        }
    }
}

1 个答案:

答案 0 :(得分:2)

首先要检查其是否正常工作,并且连接确实与您的项目建立连接,最简单的方法是查看项目的Google Cloud Platform控制台,然后在IoT Core部分(IoT Core->注册表->设备),其中有一个用于“配置和状态历史记录”的标签,您应该在该标签中看到“测试数据”(与publishDeviceState调用设置一样)。那应该确认至少其他所有东西都按预期工作。

假设是这种情况,现在您将要查看Pub / Sub文档,以开始了解可以使用Pub / Sub进行的操作。 Here是主要的文档页面。我的建议是考虑将Google Cloud Functions作为快速启动和运行的地方。根据您想做什么,Cloud Dataflow可能也是一个不错的选择。

这些产品中的每一个都会根据发布到Cloud Pub / Sub中的消息触发。因此,一旦您调用“ publishTelemetry”,它将把遥测发送到IoT Core,然后将其发布到IoT Core注册表中指定时的Pub / Sub主题中。然后触发的产品(GCF和数据流)接收发布/订阅对象,您可以从中获取遥测数据。文档中有关于如何执行此操作的示例。