×

使用Azure的基于云和基于边缘的活动识别

消耗积分:0 | 格式:zip | 大小:0.00 MB | 2023-06-19

417804

分享资料个

描述

在本文中,我想向您解释如何在 Azure Web 应用服务计划上部署项目架构。让我们很快看一下架构。

 

pYYBAGOYJsCADy2QAADjoxV5CcA348.png
 

基于云

数据来自智能手机,并使用通用传感器 API 收集。智能手机以特定频率(例如 20 Hz)收集值,并在前端存储一个具有最后 5 秒值的对象。每隔 5 秒,此变量会以带有标准 POST 的 json 格式发送到中间件。中间件使用 Azure SDK 将所有收集的值发送到 Azure IoT 中心。你可以在本地或在新的 Azure Web 应用计划上部署此中间件。仪表板后端使用 Azure 事件中心从 Azure IoT 中心收集值,处理这些值(1 个活动/秒)并通过 REST 接口向仪表板公开。仪表板现在收集并显示活动值。

基于边缘

就像第一种情况一样,但数据处理在前端 javascript 端运行,因此每 5 秒再次将详细值与 POST 一起发送到中间件。中间件使用 Azure SDK 像之前一样将消息转发到 Azure IoT 中心。与之前的案例不同,这一次仪表板后端收集值但不执行任何处理 - 只需将已处理的值公开给仪表板。

如何运行它:

git clone https://github.com/stefanofoti/iot-assignment

编辑代码,替换为您的

仪表板 BE 中的 IoT 事件中心详细信息,

替换您的事件中心端点

private readonly static string s_eventHubsCompatibleEndpoint = "YOUR_ENDPOINT";

您可以通过以下方式获得它:

az iot hub show --query properties.eventHubEndpoints.events.endpoint --name {your IoT Hub name}

替换 IoT 事件中心兼容路径

private readonly static string s_eventHubsCompatiblePath = "YOUR_PATH";

您可以通过以下方式获得它:

az iot hub show --query properties.eventHubEndpoints.events.path --name {your IoT Hub name}

替换您的 sas 密钥:

private readonly static string s_iotHubSasKey = "YOUR_KEY";

您可以通过以下方式获得它:

az iot hub policy show --name service --query primaryKey --hub-name {your IoT Hub name}

还替换收集应用程序中间件中每个设备的设备连接字符串。

如何在本地试用?

确保正确安装了 .NET Core sdk。您至少需要 version.NET Core 3.1 才能正确运行项目的这两个部分。

移动到收集应用程序文件夹

cd activity-collecting-app/
dotnet restore
dotnet run

在克隆的文件夹中打开一个新终端并移动到仪表板文件夹

cd activity-cloud-dashboard/
dotnet restore
dotnet run

现在仪表板可在以下位置获得:

https://localhost:5002/

 

 
 
 
poYBAGOYJsSAOSJ9AAEHm8Nh82M281.png
 
1 / 2
 

当活动收集应用程序在您的机器上的 8080 端口上运行时:

https://localhost:8080/

如果您打开了端口 8080 并且没有防火墙阻止传入连接,则您应该已经能够从智能手机连接到仪表板,因此打开手机浏览器并输入:

https://{YOUR_PC_IP_ADDRESS}:8080/

您应该会看到收集应用程序。按下开始按钮,页面将开始 REST 将每 5 秒收集的行值发布到中间件。如果一切正常,您应该会在 PC 上运行的中间件进程中看到一些日志消息。

出现错误如何调试?

使用 Chrome 设备可以轻松访问 Javascript 智能手机日志。在您的 chrome 桌面浏览器上键入 chrome://inspect/#devices,将您的 Android 智能手机连接到 PC - 确保您已安装 ADB 驱动程序,并且开发人员选项已在您的手机上启用。同样,如果一切正常,您应该不会看到任何红色消息。

 

pYYBAGOYyhaAEDY6AABjVAYxYfw915.png
连接到 chrome 的远程设备
 

 

poYBAGOYyhiAcoh0AACVmsNlVi0966.png
来自智能手机的 javascript 控制台日志
 

 

从您的 PC 浏览到仪表板。你应该看到你的价值观。

为了将其作为 Web 应用程序部署在 Azure 上,请继续如下操作。

为部署设置用户凭据,因此打开 azure 终端并:

az webapp deployment user set --user-name  --password 

创建应用服务计划

az appservice plan create --name myAppServicePlan --resource-group myResourceGroup --sku FREE

创建应用程序

az webapp create --resource-group myResourceGroup --plan myAppServicePlan --name <app-name> --deployment-local-git

您应该使用本地 git 获得输出以将数据推送到哪里

"deploymentLocalGitUrl": "https://<username>@<app-name>.scm.azurewebsites.net/<app-name>.git",

在您的本地终端中

git remote add azure <deploymentLocalGitUrl-from-create-step>
git push azure master

部署将开始!

完成后,您的仪表板将在以下位置可用:

http://.azurewebsites.net/

如果需要,还可以在 Azure 上部署中间件和采集网页。只需再次重复这些步骤,这次推送收集应用程序。


声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉

评论(0)
发评论

下载排行榜

全部0条评论

快来发表一下你的评论吧 !

'+ '

'+ '

'+ ''+ '
'+ ''+ ''+ '
'+ ''+ '' ); $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code ==5){ $(pop_this).attr('href',"/login/index.html"); return false } if(data.code == 2){ //跳转到VIP升级页面 window.location.href="//m.obk20.com/vip/index?aid=" + webid return false } //是会员 if (data.code > 0) { $('body').append(htmlSetNormalDownload); var getWidth=$("#poplayer").width(); $("#poplayer").css("margin-left","-"+getWidth/2+"px"); $('#tips').html(data.msg) $('.download_confirm').click(function(){ $('#dialog').remove(); }) } else { var down_url = $('#vipdownload').attr('data-url'); isBindAnalysisForm(pop_this, down_url, 1) } }); }); //是否开通VIP $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code == 2 || data.code ==5){ //跳转到VIP升级页面 $('#vipdownload>span').text("开通VIP 免费下载") return false }else{ // 待续费 if(data.code == 3) { vipExpiredInfo.ifVipExpired = true vipExpiredInfo.vipExpiredDate = data.data.endoftime } $('#vipdownload .icon-vip-tips').remove() $('#vipdownload>span').text("VIP免积分下载") } }); }).on("click",".download_cancel",function(){ $('#dialog').remove(); }) var setWeixinShare={};//定义默认的微信分享信息,页面如果要自定义分享,直接更改此变量即可 if(window.navigator.userAgent.toLowerCase().match(/MicroMessenger/i) == 'micromessenger'){ var d={ title:'使用Azure的基于云和基于边缘的活动识别',//标题 desc:$('[name=description]').attr("content"), //描述 imgUrl:'https://'+location.host+'/static/images/ele-logo.png',// 分享图标,默认是logo link:'',//链接 type:'',// 分享类型,music、video或link,不填默认为link dataUrl:'',//如果type是music或video,则要提供数据链接,默认为空 success:'', // 用户确认分享后执行的回调函数 cancel:''// 用户取消分享后执行的回调函数 } setWeixinShare=$.extend(d,setWeixinShare); $.ajax({ url:"//www.obk20.com/app/wechat/index.php?s=Home/ShareConfig/index", data:"share_url="+encodeURIComponent(location.href)+"&format=jsonp&domain=m", type:'get', dataType:'jsonp', success:function(res){ if(res.status!="successed"){ return false; } $.getScript('https://res.wx.qq.com/open/js/jweixin-1.0.0.js',function(result,status){ if(status!="success"){ return false; } var getWxCfg=res.data; wx.config({ //debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId:getWxCfg.appId, // 必填,公众号的唯一标识 timestamp:getWxCfg.timestamp, // 必填,生成签名的时间戳 nonceStr:getWxCfg.nonceStr, // 必填,生成签名的随机串 signature:getWxCfg.signature,// 必填,签名,见附录1 jsApiList:['onMenuShareTimeline','onMenuShareAppMessage','onMenuShareQQ','onMenuShareWeibo','onMenuShareQZone'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 }); wx.ready(function(){ //获取“分享到朋友圈”按钮点击状态及自定义分享内容接口 wx.onMenuShareTimeline({ title: setWeixinShare.title, // 分享标题 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享给朋友”按钮点击状态及自定义分享内容接口 wx.onMenuShareAppMessage({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 type: setWeixinShare.type, // 分享类型,music、video或link,不填默认为link dataUrl: setWeixinShare.dataUrl, // 如果type是music或video,则要提供数据链接,默认为空 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ”按钮点击状态及自定义分享内容接口 wx.onMenuShareQQ({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到腾讯微博”按钮点击状态及自定义分享内容接口 wx.onMenuShareWeibo({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ空间”按钮点击状态及自定义分享内容接口 wx.onMenuShareQZone({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); }); }); } }); } function openX_ad(posterid, htmlid, width, height) { if ($(htmlid).length > 0) { var randomnumber = Math.random(); var now_url = encodeURIComponent(window.location.href); var ga = document.createElement('iframe'); ga.src = 'https://www1.elecfans.com/www/delivery/myafr.php?target=_blank&cb=' + randomnumber + '&zoneid=' + posterid+'&prefer='+now_url; ga.width = width; ga.height = height; ga.frameBorder = 0; ga.scrolling = 'no'; var s = $(htmlid).append(ga); } } openX_ad(828, '#berry-300', 300, 250);