build your own secure and real-time dashboard for mobile and web

38
© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential. Build your own secure and real-time Dashboard for Mobile and Web Kailash Bihani

Upload: coldfusionconference

Post on 12-Jan-2017

283 views

Category:

Technology


0 download

TRANSCRIPT

Page 1: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Build your own secure and real-time Dashboard for Mobile and WebKailash Bihani

Page 2: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Agenda

What is a dashboard? Features required in a dashboard? How ColdFusion helps Demo Architecture Code Snippets Summary Q & A

2

Page 3: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Dashboard?

A UI that organizes and presents information in a way that is easy to read

3

Page 4: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Why?

“if you can’t measure it, you can’t improve it.”

4

-Peter Drucker

Page 5: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Features required?

5

Real-time CFWEBSOCKET

Responsive HTML Frameworks

Customizable Modular code

Graphs ColdFusion based Zing Charts

Notifications CFMAIL

Report Generation CFHTMLTOPDF

Secure SSL/API Manager

Page 6: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Architecture - Server

6

SYSTEM: Runs the monitoring agent

SERVER

FTP Location

DASHBOARD

Collects the data Stores the data

Processes the data Displays the data

Page 7: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Architecture - Server

7

Various systems in the network run the Monitoring Agent

Page 8: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Architecture - Server

8

Collected data pushed to a FTP location periodically

Page 9: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Architecture - Server

9

Data queried by server periodically

Page 10: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Architecture - Server

10

Server processes the data

Page 11: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Architecture - Server

11

Page 12: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

DEMOTHE MONITORING DASHBOARD

12

Page 13: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Architecture - Dashboard

13

SummaryServer

Other ScreensAPI Manager

Page 14: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Architecture - Dashboard

14

Hey Server, I am a monitoring dashboard and I am up

Page 15: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Architecture - Dashboard

15

No Problem. I have added you. You will now be served

Page 16: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Architecture - Dashboard

16

Hey component, this is the dashboard. Can you please come up?

Page 17: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Architecture - Dashboard

17

Hey API Manager, this is the component. Please serve me the data? My IP is xyz

Page 18: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Architecture - Dashboard

18

Hey server, give me the data for the IP: xyz

Page 19: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Architecture - Dashboard

19

Here’s the data for the IP: xyz

Page 20: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Architecture - Dashboard

20

Hey xyz, here’s your data

Page 21: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

CODE SNIPPETSMonitoring Dashboard and Server

21

Page 22: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Websockets

Define the various channels

Application.cfc

22

Page 23: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Websockets

Register as soon as summary page loads

23

Summary.cfm

Summary.js

Page 24: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Websockets

Server publishes the data

24

Page 25: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Websockets

Data captured by the client

25

Page 26: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Websockets

Websockets over SSL ColdFusion should run over SSL

Make changes in admin

26

Page 27: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Analytics

To find when was the machine last down

27

Page 28: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Report Generation

Using HTMLTOPDF

28

Page 29: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Notifications

Send mail using CFMAIL

29

Page 30: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Zing Charts

Create graphs using Zing Charts

30

Page 31: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Secure

Run ColdFusion over SSL Websocket served over SSL Run API Manager over SSL Import proper certificates to run CFHTTP

31

Page 32: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential. 32

Page 33: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

How to make it Customizable?

Change the configuration files Dashboard transforms to serve any purpose (Monitoring, Ecommerce, etc.) No front-end or back-end code change required

33

Page 34: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

DEMOFOR ECOMMERCE DASHBOARD

34

Page 35: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Summary

Key Learnings Securing your application

Use websockets for real-time communication

35

Page 36: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

What Next?

Source Code can be found at: https://www.dropbox.com/sh/9oef2jh0t28a9jq/AAATd85J4gxP5pcFTsw8BF7Ma?dl=0

For any information, mail me at “[email protected]” or “[email protected]

36

Page 37: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Questions?

Page 38: Build your own secure and real-time dashboard for mobile and web

© 2016 Adobe Systems Incorporated. All Rights Reserved. Adobe Confidential.

Thank You