SlideShare une entreprise Scribd logo
1  sur  48
Moderator
Kent Melville
Sales Engineering Manager
Inductive Automation
About Inductive Automation
About Inductive Automation
• Founded in 2003
• Leader in HMI, SCADA, MES & IIoT software
• Used by 56% of Fortune 100 companies
• Over 2,700 integrators have joined our
Integrator Program
• Based in California, with international
distributors around the world
Learn more at: inductiveautomation.com/about
Ignition: The Industrial
Application Platform
• Unlimited licensing model
• Cross-platform compatibility
• Based on IT-standard technologies
• Scalable server-client architecture
• Web-managed
• Launch on desktop or mobile
• Modular configurability
• Rapid development and deployment
One Universal Platform for HMI, SCADA, MES & IIoT:
One Universal Platform for HMI/SCADA, MES & IIoT:
• Unlimited licensing model
• Cross-platform compatibility
• Based on IT-standard technologies
• Scalable server-client architecture
• Web-based & web-managed
• Web-deployed designer & clients
• Modular configurability
• Rapid development & deployment
Ignition: Industrial Application Platform
Presenters
Dereck Saunders
Senior Application Design Engineer
Inductive Automation
Mara Pillott
Senior Application Design Engineer
Inductive Automation
Today’s Agenda
• Introduction
• Recognize Common Mistakes
• Visualization
• Alarms
• Security
• Conclusion and Q&A
On our last webinar, we covered:
● Data collection & logging
● HMI design
● Scripting
Previous webinar:
https://inductiveautomation.com/resources/webinar/
common-project-mistakes-and-how-to-avoid-them
Last Time on ‘Common Project Mistakes’
Ignition is so easy to use that sometimes developers
try to “brute force” their way to finding a solution.
Ignition is designed to:
● Build assets
● Repeatedly use and/or modify them
Recognize Common Mistakes
Visualization
Mistake: Unnecessarily rebuilding assets
Building the same assets over again, either in the same
project or in another one.
Visualization
Mistake: Unnecessarily rebuilding assets
Every piece of equipment or area does not require its
own dedicated screen or view.
Visualization
Solution: Parameterization & Indirect Tag Binding
Parameters can be added to views and leveraged inside of
bindings on the view to make the view dynamic.
Benefits:
● Reduce amount of project resources that need to be
managed.
● Reduce initial development time.
● Reduce time, effort & cost of future changes.
Visualization
Solution: Implementing View Parameters & Indirect Tag
Bindings
Adding view parameters to a view and utilizing them inside bindings and
scripts on the view is a simple way to create dynamic, reusable visualization.
Visualization
Solution: Reusable visualization - Repeaters
Repeater components, like the Flex Repeater, let you create multiple instances with the same look, feel
and functionality.
Visualization
Mistake: Poorly Planned Transforms
When working with a transform, always
start with the end result in mind.
In this example, we jump into binding the
dropdown options to a named query.
This approach will not give you usable
options.
The example dropdown shows us a list of
states when we wanted a list of site
names.
How do we get the options we want?
Visualization
Solution: Plan the Transform
Define Instance Structure First.
• Start with a standard component.
• Get to know the component structure.
• Copy instance to your favorite text editor.
In the dropdown example, we can see that a standard
dropdown has an array of options. Each option has a value
and label.
{
"value": "",
"label": ""
}
Visualization
Solution: Build Transform Based On Plan Here is a basic example for a script transform that will
return a list of options from results such as a named
query.
Step 1: Define empty list of options.
Step 2: Loop over records returned by query.
Step 3: Build the instance. Use the copied structure from
the standard component.
Step 4: Add the new instance to the list.
Step 5: Return the options.
Visualization
Mistake: Missing Property Changes in Transforms
Text value is bound to state property.
Both state and mode are used in the
transform.
Changes on state property will update
the text value.
Changes on mode property are
ignored.
We need to monitor property changes
on both state and mode.
Visualization
Solution: Use Expression Structure
Text value is bound to an expression
structure using both state and mode.
Changes on state or mode
property updates the text value.
Visualization
Mistake: Overlaid Components for Styling
Tedious Approach:
• Create one custom component for each state.
• Toggle visibility based on state
• Overlay the components in a coordinate container.
❌ Not Reusable:
Each component is custom configured.
The colors and other styling are not reusable elsewhere.
❌ Not Maintainable:
New states require new components.
❌ Not Mobile-Responsive:
The colors and other styling are not reusable elsewhere.
Visualization
Solution: Use Style Classes
Best Practice Approach:
Create a style class for each status.
✓ Reusable:
These classes can now be used anywhere in
the project.
✓ Maintainable:
Style changes are now made in only one place
and apply everywhere in the project.
✓ Mobile-Responsive:
Flex containers may be used when components
are not overlaid.
Visualization
Solution: Map Style Class Using a Transform
Reusable and Maintainable Solution:
• Create only one component.
• Define style classes
• Bind the style to a property.
• Use a transform to map each state to a style.
Updates to style class will apply to all
components using the class.
Formatting changes will only need to be made
on the one component. No need to copy-paste
changes.
Visualization
Mistake: Overwriting Themes
Themes
• Provide initial styling
• Overwritten by styles
• CSS-based
• Inheritable
Customizing
• Advanced feature
• CSS knowledge required
• Study the README
Do Not Overwrite Built-In Themes
Changes made to the built-in theme files
will be replaced on Gateway start-up
Visualization
Solution: Inherit from Base Themes
Start With Built-In Themes:
• The base theme is the light theme
• All themes extend from the base theme
• Other themes are derived from the base theme
• Use any derivative theme as an example
• Adapt a built-in theme or create a custom theme
Visualization
Solution: Adapt a Built-In Theme
• Add your own CSS file in a custom directory
• Import Custom File In Entry File
• Place custom import after other imports
• Use double quotes around file names
• Add semicolon at the end of each line
Backup your themes files!
@import "./light/index.css";
@import "./custom/overrides.css";
Visualization
Solution: Custom Themes
• Start with built-in theme as an example
• Create your own entry file in themes directory
• Build your CSS
• Select your theme in the Session Properties
• Backup your files
Visualization
Shortcut: ALT + left click
Instead of double-clicking to deep select and drill down
to nested containers or components, using ALT + left
click allows you to immediately select through to the
“deepest” component or container that the mouse cursor
is hovering over.
Keyboard Shortcuts:
https://docs.inductiveautomation.com/display/DOC81/Ke
yboard+Shortcuts
Select Through:
https://docs.inductiveautomation.com/display/DOC81/W
orking+with+Perspective+Components#WorkingwithPer
spectiveComponents-DeepSelection
Recap
Visualization Mistakes:
● Rebuilding assets
● Poorly planned transforms
● Missing property changes
● Overlaid components for styling
● Overwriting themes
Solutions:
➔ Dynamic visualization
➔ Plan with end result in mind
➔ Expression structures
➔ Map transforms to style class
➔ Custom themes
Alarms
Alarms are instrumental in preventing
downtime but a poor alarm setup
greatly diminishes how useful they are.
Alarms should never be ignored.
Alarms
Mistake: Not Prioritizing Alarms
Not prioritizing alarms will leave all
configured alarms at the default Low
priority.
Alarms
Solution:
Prioritize alarms
Use priority levels to differentiate
between the severity of alarms.
5 levels:
● Diagnostic
● Low
● Medium
● High
● Critical
Alarms
Mistake: Not setting the display path for alarms
Not setting the display path to a meaningful value will instead
simply display the path of the tag that the alarm is configured on.
Alarms
Solution: Set the alarm’s display path
Recap
Alarm Mistakes:
● Not Prioritizing Alarms
● Not Setting the Display Path for
Alarms
Solutions:
➔ Prioritize Alarms
➔ Set the Alarm’s Display Path
Security
Mistake:
• No security
• Everyone in admin role
• Everyone shares admin login
Solution:
• Implement security measures
• Separate users by roles
Ignition was designed with security in mind.
Set security on both Gateway and Projects.
Security
Mistake:
No security
Solution:
Role-based security on the
Gateway
Protects most critical areas:
Designer and Gateway
Security
Mistake:
No security
Solution:
Set project level security in Project
Properties
Security
Mistake:
No security on project
components.
Solution:
Establish security based on
roles.
• Assign user roles.
• Restrict access based on roles.
Security
Mistake:
Security only on visualization
Solution:
Security on tags
Export tags to bulk modify
Security
Mistake:
Not encrypting all data.
Solution:
Use HTTP (SSL).
Security
Mistake: Not utilizing centralized user
source for Enterprise solutions.
Solution:
Establish an active directory/SSO (IdP)
Add an extra layer of protection with 2-
factor authentication.
Ignition Security Hardening Guide: https://inductiveautomation.com/resources/article/ignition-
security-hardening-guide
Security
Mistake: No Gateway Backups
Single Gateway Solution:
● Gateway Auto Backup
Enterprise Solution:
● Collect Backup Agent Task
Recap
Security Mistakes:
● No security
● Uniform security clearance
● Security only on visualization
● Unencrypted HTTP
● No centralized user source
● No backups
Solutions:
➔ Implement security measures
➔ Assign user-based security
➔ Add security on Tags
➔ Use SSL
➔ Active directory/SSO
➔ Automated backups
Conclusion
We all make mistakes no matter how
much experience we have.
Fortunately, Ignition gives you the
tools to not only fix those mistakes, but
turn them into strengths.
Ignition provides many ways to make
your projects more organized, efficient,
stylish, and secure.
International Distributors
Australia iControls Pty Ltd. www.icontrols.com.au
Brazil FG Automação Industrial www.fgltda.com.br
Central America NV Tecnologías S.A. www.nvtecnologias.com
France AXONE-iO www.axone-io.com
Italy EFA Automazione S.p.A www.efa.it
Norway Autic System AS www.autic.no
South Africa Element8 https://element8.co.za/
Switzerland MPI Technologies https://mpi.ch/
Contact International Distribution Manager Annie Wise at: awise@inductiveautomation.com
Common Project Mistakes: Visualization, Alarms, and Security
Common Project Mistakes: Visualization, Alarms, and Security

Contenu connexe

Tendances

Get Your ERP & Operational Data Working Together
Get Your ERP & Operational Data Working TogetherGet Your ERP & Operational Data Working Together
Get Your ERP & Operational Data Working TogetherInductive Automation
 
Solving Data Problems to Accelerate Digital Transformation.pptx
Solving Data Problems to Accelerate Digital Transformation.pptxSolving Data Problems to Accelerate Digital Transformation.pptx
Solving Data Problems to Accelerate Digital Transformation.pptxInductive Automation
 
Turn Any Panel PC Into an Ignition HMI
Turn Any Panel PC Into an Ignition HMITurn Any Panel PC Into an Ignition HMI
Turn Any Panel PC Into an Ignition HMIInductive Automation
 
5 Mobile-Responsive Layout Strategies
5 Mobile-Responsive Layout Strategies5 Mobile-Responsive Layout Strategies
5 Mobile-Responsive Layout StrategiesInductive Automation
 
De-Risk Your Digital Transformation — And Reduce Time, Cost & Complexity
De-Risk Your Digital Transformation — And Reduce Time, Cost & ComplexityDe-Risk Your Digital Transformation — And Reduce Time, Cost & Complexity
De-Risk Your Digital Transformation — And Reduce Time, Cost & ComplexityInductive Automation
 
Design Like a Pro: Machine Learning Basics
Design Like a Pro: Machine Learning BasicsDesign Like a Pro: Machine Learning Basics
Design Like a Pro: Machine Learning BasicsInductive Automation
 
Real Tools for Digital Transformation
Real Tools for Digital TransformationReal Tools for Digital Transformation
Real Tools for Digital TransformationInductive Automation
 
Getting Started with Architecture Decision Records
Getting Started with Architecture Decision RecordsGetting Started with Architecture Decision Records
Getting Started with Architecture Decision RecordsMichael Keeling
 
The Impact of Artificial Intelligence and Digital Disruption on the Supply Chain
The Impact of Artificial Intelligence and Digital Disruption on the Supply ChainThe Impact of Artificial Intelligence and Digital Disruption on the Supply Chain
The Impact of Artificial Intelligence and Digital Disruption on the Supply ChainJason Prescott
 
Software Development Methodologies.pptx
Software Development Methodologies.pptxSoftware Development Methodologies.pptx
Software Development Methodologies.pptxMohamedElshaikh10
 
intelligentbuilding.pptx
intelligentbuilding.pptxintelligentbuilding.pptx
intelligentbuilding.pptxDeeshaKhamar1
 
Unattended OutSystems Installation
Unattended OutSystems InstallationUnattended OutSystems Installation
Unattended OutSystems InstallationOutSystems
 
Hands on With Advanced Data Grid
Hands on With Advanced Data GridHands on With Advanced Data Grid
Hands on With Advanced Data GridOutSystems
 
OutSystems: A more efficient way to build apps!
OutSystems: A more efficient way to build apps!OutSystems: A more efficient way to build apps!
OutSystems: A more efficient way to build apps!Russ Fustino
 
Building Management Services
Building Management Services Building Management Services
Building Management Services Aroh Thombre
 
Oracle Customer Experience - Sales
Oracle Customer Experience - Sales Oracle Customer Experience - Sales
Oracle Customer Experience - Sales Jad Bejjani
 
Why the Brick Schema is a Game Changer for Smart Buildings?
Why the Brick Schema is a Game Changer for Smart Buildings?Why the Brick Schema is a Game Changer for Smart Buildings?
Why the Brick Schema is a Game Changer for Smart Buildings?Memoori
 
ML & AI based Cloud Compiler.pptx
ML & AI based Cloud Compiler.pptxML & AI based Cloud Compiler.pptx
ML & AI based Cloud Compiler.pptxViji B
 

Tendances (20)

Get Your ERP & Operational Data Working Together
Get Your ERP & Operational Data Working TogetherGet Your ERP & Operational Data Working Together
Get Your ERP & Operational Data Working Together
 
Solving Data Problems to Accelerate Digital Transformation.pptx
Solving Data Problems to Accelerate Digital Transformation.pptxSolving Data Problems to Accelerate Digital Transformation.pptx
Solving Data Problems to Accelerate Digital Transformation.pptx
 
Turn Any Panel PC Into an Ignition HMI
Turn Any Panel PC Into an Ignition HMITurn Any Panel PC Into an Ignition HMI
Turn Any Panel PC Into an Ignition HMI
 
5 Mobile-Responsive Layout Strategies
5 Mobile-Responsive Layout Strategies5 Mobile-Responsive Layout Strategies
5 Mobile-Responsive Layout Strategies
 
De-Risk Your Digital Transformation — And Reduce Time, Cost & Complexity
De-Risk Your Digital Transformation — And Reduce Time, Cost & ComplexityDe-Risk Your Digital Transformation — And Reduce Time, Cost & Complexity
De-Risk Your Digital Transformation — And Reduce Time, Cost & Complexity
 
Design Like a Pro: Machine Learning Basics
Design Like a Pro: Machine Learning BasicsDesign Like a Pro: Machine Learning Basics
Design Like a Pro: Machine Learning Basics
 
New Ignition Features In Action
New Ignition Features In ActionNew Ignition Features In Action
New Ignition Features In Action
 
Real Tools for Digital Transformation
Real Tools for Digital TransformationReal Tools for Digital Transformation
Real Tools for Digital Transformation
 
Getting Started with Architecture Decision Records
Getting Started with Architecture Decision RecordsGetting Started with Architecture Decision Records
Getting Started with Architecture Decision Records
 
The Impact of Artificial Intelligence and Digital Disruption on the Supply Chain
The Impact of Artificial Intelligence and Digital Disruption on the Supply ChainThe Impact of Artificial Intelligence and Digital Disruption on the Supply Chain
The Impact of Artificial Intelligence and Digital Disruption on the Supply Chain
 
Software Development Methodologies.pptx
Software Development Methodologies.pptxSoftware Development Methodologies.pptx
Software Development Methodologies.pptx
 
intelligentbuilding.pptx
intelligentbuilding.pptxintelligentbuilding.pptx
intelligentbuilding.pptx
 
Unattended OutSystems Installation
Unattended OutSystems InstallationUnattended OutSystems Installation
Unattended OutSystems Installation
 
Hands on With Advanced Data Grid
Hands on With Advanced Data GridHands on With Advanced Data Grid
Hands on With Advanced Data Grid
 
OutSystems: A more efficient way to build apps!
OutSystems: A more efficient way to build apps!OutSystems: A more efficient way to build apps!
OutSystems: A more efficient way to build apps!
 
Building Management Services
Building Management Services Building Management Services
Building Management Services
 
Prediction of housing price
Prediction of housing pricePrediction of housing price
Prediction of housing price
 
Oracle Customer Experience - Sales
Oracle Customer Experience - Sales Oracle Customer Experience - Sales
Oracle Customer Experience - Sales
 
Why the Brick Schema is a Game Changer for Smart Buildings?
Why the Brick Schema is a Game Changer for Smart Buildings?Why the Brick Schema is a Game Changer for Smart Buildings?
Why the Brick Schema is a Game Changer for Smart Buildings?
 
ML & AI based Cloud Compiler.pptx
ML & AI based Cloud Compiler.pptxML & AI based Cloud Compiler.pptx
ML & AI based Cloud Compiler.pptx
 

Similaire à Common Project Mistakes: Visualization, Alarms, and Security

Design Like a Pro: Building Mobile-Responsive HMIs in Ignition Perspective
Design Like a Pro: Building Mobile-Responsive HMIs in Ignition PerspectiveDesign Like a Pro: Building Mobile-Responsive HMIs in Ignition Perspective
Design Like a Pro: Building Mobile-Responsive HMIs in Ignition PerspectiveInductive Automation
 
Continuous Integration
Continuous IntegrationContinuous Integration
Continuous IntegrationXPDays
 
DNN-Connect 2019: DNN Horror Stories
DNN-Connect 2019: DNN Horror StoriesDNN-Connect 2019: DNN Horror Stories
DNN-Connect 2019: DNN Horror StoriesWill Strohl
 
How to Develop Highly Customizable Off-the-Shelf Software (Aleksey Stukalov)
How to Develop Highly Customizable Off-the-Shelf Software  (Aleksey Stukalov)How to Develop Highly Customizable Off-the-Shelf Software  (Aleksey Stukalov)
How to Develop Highly Customizable Off-the-Shelf Software (Aleksey Stukalov)Юрий Артамонов
 
Benefits of using software design patterns and when to use design pattern
Benefits of using software design patterns and when to use design patternBenefits of using software design patterns and when to use design pattern
Benefits of using software design patterns and when to use design patternBeroza Paul
 
Component based development | what, why and how
Component based development | what, why and howComponent based development | what, why and how
Component based development | what, why and howRakesh Kumar Jha
 
Introduction to computer programming.pdf
Introduction to computer programming.pdfIntroduction to computer programming.pdf
Introduction to computer programming.pdfHasankaNayanjith
 
Developer Night - Opticon18
Developer Night - Opticon18Developer Night - Opticon18
Developer Night - Opticon18Optimizely
 
Software process models
Software process modelsSoftware process models
Software process modelsMalik WaQas
 
Agile Secure Cloud Application Development Management
Agile Secure Cloud Application Development ManagementAgile Secure Cloud Application Development Management
Agile Secure Cloud Application Development ManagementAdam Getchell
 
Inline Template Puppet Type
Inline Template Puppet TypeInline Template Puppet Type
Inline Template Puppet TypeLyndon Swan
 
How to become a Rational Developer for IBM i Power User
How to become a Rational Developer for IBM i Power UserHow to become a Rational Developer for IBM i Power User
How to become a Rational Developer for IBM i Power UserStrongback Consulting
 
An Introduction To Software Development - Implementation
An Introduction To Software Development - ImplementationAn Introduction To Software Development - Implementation
An Introduction To Software Development - ImplementationBlue Elephant Consulting
 
Building iOS App Project & Architecture
Building iOS App Project & ArchitectureBuilding iOS App Project & Architecture
Building iOS App Project & ArchitectureMassimo Oliviero
 
The Rocky Cloud Road
The Rocky Cloud RoadThe Rocky Cloud Road
The Rocky Cloud RoadGert Drapers
 
Enter the mind of an Agile Developer
Enter the mind of an Agile DeveloperEnter the mind of an Agile Developer
Enter the mind of an Agile DeveloperBSGAfrica
 
A modern architecturereview–usingcodereviewtools-ver-3.5
A modern architecturereview–usingcodereviewtools-ver-3.5A modern architecturereview–usingcodereviewtools-ver-3.5
A modern architecturereview–usingcodereviewtools-ver-3.5SSW
 
Selena Deckelmann - Sane Schema Management with Alembic and SQLAlchemy @ Pos...
Selena Deckelmann - Sane Schema Management with  Alembic and SQLAlchemy @ Pos...Selena Deckelmann - Sane Schema Management with  Alembic and SQLAlchemy @ Pos...
Selena Deckelmann - Sane Schema Management with Alembic and SQLAlchemy @ Pos...PostgresOpen
 

Similaire à Common Project Mistakes: Visualization, Alarms, and Security (20)

Design Like a Pro: Building Mobile-Responsive HMIs in Ignition Perspective
Design Like a Pro: Building Mobile-Responsive HMIs in Ignition PerspectiveDesign Like a Pro: Building Mobile-Responsive HMIs in Ignition Perspective
Design Like a Pro: Building Mobile-Responsive HMIs in Ignition Perspective
 
Continuous Integration
Continuous IntegrationContinuous Integration
Continuous Integration
 
DNN-Connect 2019: DNN Horror Stories
DNN-Connect 2019: DNN Horror StoriesDNN-Connect 2019: DNN Horror Stories
DNN-Connect 2019: DNN Horror Stories
 
How to Develop Highly Customizable Off-the-Shelf Software (Aleksey Stukalov)
How to Develop Highly Customizable Off-the-Shelf Software  (Aleksey Stukalov)How to Develop Highly Customizable Off-the-Shelf Software  (Aleksey Stukalov)
How to Develop Highly Customizable Off-the-Shelf Software (Aleksey Stukalov)
 
Benefits of using software design patterns and when to use design pattern
Benefits of using software design patterns and when to use design patternBenefits of using software design patterns and when to use design pattern
Benefits of using software design patterns and when to use design pattern
 
Component based development | what, why and how
Component based development | what, why and howComponent based development | what, why and how
Component based development | what, why and how
 
Introduction to computer programming.pdf
Introduction to computer programming.pdfIntroduction to computer programming.pdf
Introduction to computer programming.pdf
 
Developer Night - Opticon18
Developer Night - Opticon18Developer Night - Opticon18
Developer Night - Opticon18
 
Software process models
Software process modelsSoftware process models
Software process models
 
Agile Secure Cloud Application Development Management
Agile Secure Cloud Application Development ManagementAgile Secure Cloud Application Development Management
Agile Secure Cloud Application Development Management
 
Design p atterns
Design p atternsDesign p atterns
Design p atterns
 
Inline Template Puppet Type
Inline Template Puppet TypeInline Template Puppet Type
Inline Template Puppet Type
 
How to become a Rational Developer for IBM i Power User
How to become a Rational Developer for IBM i Power UserHow to become a Rational Developer for IBM i Power User
How to become a Rational Developer for IBM i Power User
 
An Introduction To Software Development - Implementation
An Introduction To Software Development - ImplementationAn Introduction To Software Development - Implementation
An Introduction To Software Development - Implementation
 
Building iOS App Project & Architecture
Building iOS App Project & ArchitectureBuilding iOS App Project & Architecture
Building iOS App Project & Architecture
 
The Rocky Cloud Road
The Rocky Cloud RoadThe Rocky Cloud Road
The Rocky Cloud Road
 
Coding
CodingCoding
Coding
 
Enter the mind of an Agile Developer
Enter the mind of an Agile DeveloperEnter the mind of an Agile Developer
Enter the mind of an Agile Developer
 
A modern architecturereview–usingcodereviewtools-ver-3.5
A modern architecturereview–usingcodereviewtools-ver-3.5A modern architecturereview–usingcodereviewtools-ver-3.5
A modern architecturereview–usingcodereviewtools-ver-3.5
 
Selena Deckelmann - Sane Schema Management with Alembic and SQLAlchemy @ Pos...
Selena Deckelmann - Sane Schema Management with  Alembic and SQLAlchemy @ Pos...Selena Deckelmann - Sane Schema Management with  Alembic and SQLAlchemy @ Pos...
Selena Deckelmann - Sane Schema Management with Alembic and SQLAlchemy @ Pos...
 

Plus de Inductive Automation

Overcoming Digital Transformation Pain Points
Overcoming Digital Transformation Pain PointsOvercoming Digital Transformation Pain Points
Overcoming Digital Transformation Pain PointsInductive Automation
 
How Ignition Eases SCADA Pain Points
How Ignition Eases SCADA Pain PointsHow Ignition Eases SCADA Pain Points
How Ignition Eases SCADA Pain PointsInductive Automation
 
Security Best Practices for Your Ignition System
Security Best Practices for Your Ignition SystemSecurity Best Practices for Your Ignition System
Security Best Practices for Your Ignition SystemInductive Automation
 
Bringing Digital Transformation Into Focus
Bringing Digital Transformation Into FocusBringing Digital Transformation Into Focus
Bringing Digital Transformation Into FocusInductive Automation
 
Integrators Explore the Road Ahead
Integrators Explore the Road AheadIntegrators Explore the Road Ahead
Integrators Explore the Road AheadInductive Automation
 
The Evolution of Industrial Visualization
The Evolution of Industrial VisualizationThe Evolution of Industrial Visualization
The Evolution of Industrial VisualizationInductive Automation
 
Unlocking Greater Efficiency: The Why and How of OEE Implementation
Unlocking Greater Efficiency: The Why and How of OEE ImplementationUnlocking Greater Efficiency: The Why and How of OEE Implementation
Unlocking Greater Efficiency: The Why and How of OEE ImplementationInductive Automation
 
Leveraging Ignition Quick Start to Rapidly Build Real Projects
Leveraging Ignition Quick Start to Rapidly Build Real ProjectsLeveraging Ignition Quick Start to Rapidly Build Real Projects
Leveraging Ignition Quick Start to Rapidly Build Real ProjectsInductive Automation
 
Design Like a Pro: Developing & Deploying Perspective Applications as HMIs
Design Like a Pro: Developing & Deploying Perspective Applications as HMIsDesign Like a Pro: Developing & Deploying Perspective Applications as HMIs
Design Like a Pro: Developing & Deploying Perspective Applications as HMIsInductive Automation
 
Integrator Discussion: Leading Through Innovation During COVID-19 and Beyond
Integrator Discussion: Leading Through Innovation During COVID-19 and BeyondIntegrator Discussion: Leading Through Innovation During COVID-19 and Beyond
Integrator Discussion: Leading Through Innovation During COVID-19 and BeyondInductive Automation
 
Ignition Community Live with Carl Gould & Colby Clegg
Ignition Community Live with Carl Gould & Colby CleggIgnition Community Live with Carl Gould & Colby Clegg
Ignition Community Live with Carl Gould & Colby CleggInductive Automation
 
Design Like a Pro: How to Best Plan Your Perspective Project
Design Like a Pro: How to Best Plan Your Perspective ProjectDesign Like a Pro: How to Best Plan Your Perspective Project
Design Like a Pro: How to Best Plan Your Perspective ProjectInductive Automation
 
Securely Monitor Critical Systems From Anywhere
Securely Monitor Critical Systems From AnywhereSecurely Monitor Critical Systems From Anywhere
Securely Monitor Critical Systems From AnywhereInductive Automation
 
Leveraging Ignition for Smart Manufacturing and Digital Transformation
Leveraging Ignition for Smart Manufacturing and Digital TransformationLeveraging Ignition for Smart Manufacturing and Digital Transformation
Leveraging Ignition for Smart Manufacturing and Digital TransformationInductive Automation
 
6 Simple Steps to Enterprise Digital Transformation
6 Simple Steps to Enterprise Digital Transformation6 Simple Steps to Enterprise Digital Transformation
6 Simple Steps to Enterprise Digital TransformationInductive Automation
 
Pushing the Boundaries of Data Visualization
Pushing the Boundaries of Data VisualizationPushing the Boundaries of Data Visualization
Pushing the Boundaries of Data VisualizationInductive Automation
 

Plus de Inductive Automation (17)

Overcoming Digital Transformation Pain Points
Overcoming Digital Transformation Pain PointsOvercoming Digital Transformation Pain Points
Overcoming Digital Transformation Pain Points
 
How Ignition Eases SCADA Pain Points
How Ignition Eases SCADA Pain PointsHow Ignition Eases SCADA Pain Points
How Ignition Eases SCADA Pain Points
 
Security Best Practices for Your Ignition System
Security Best Practices for Your Ignition SystemSecurity Best Practices for Your Ignition System
Security Best Practices for Your Ignition System
 
Bringing Digital Transformation Into Focus
Bringing Digital Transformation Into FocusBringing Digital Transformation Into Focus
Bringing Digital Transformation Into Focus
 
Integrators Explore the Road Ahead
Integrators Explore the Road AheadIntegrators Explore the Road Ahead
Integrators Explore the Road Ahead
 
First Steps to DevOps
First Steps to DevOpsFirst Steps to DevOps
First Steps to DevOps
 
The Evolution of Industrial Visualization
The Evolution of Industrial VisualizationThe Evolution of Industrial Visualization
The Evolution of Industrial Visualization
 
Unlocking Greater Efficiency: The Why and How of OEE Implementation
Unlocking Greater Efficiency: The Why and How of OEE ImplementationUnlocking Greater Efficiency: The Why and How of OEE Implementation
Unlocking Greater Efficiency: The Why and How of OEE Implementation
 
Leveraging Ignition Quick Start to Rapidly Build Real Projects
Leveraging Ignition Quick Start to Rapidly Build Real ProjectsLeveraging Ignition Quick Start to Rapidly Build Real Projects
Leveraging Ignition Quick Start to Rapidly Build Real Projects
 
Design Like a Pro: Developing & Deploying Perspective Applications as HMIs
Design Like a Pro: Developing & Deploying Perspective Applications as HMIsDesign Like a Pro: Developing & Deploying Perspective Applications as HMIs
Design Like a Pro: Developing & Deploying Perspective Applications as HMIs
 
Integrator Discussion: Leading Through Innovation During COVID-19 and Beyond
Integrator Discussion: Leading Through Innovation During COVID-19 and BeyondIntegrator Discussion: Leading Through Innovation During COVID-19 and Beyond
Integrator Discussion: Leading Through Innovation During COVID-19 and Beyond
 
Ignition Community Live with Carl Gould & Colby Clegg
Ignition Community Live with Carl Gould & Colby CleggIgnition Community Live with Carl Gould & Colby Clegg
Ignition Community Live with Carl Gould & Colby Clegg
 
Design Like a Pro: How to Best Plan Your Perspective Project
Design Like a Pro: How to Best Plan Your Perspective ProjectDesign Like a Pro: How to Best Plan Your Perspective Project
Design Like a Pro: How to Best Plan Your Perspective Project
 
Securely Monitor Critical Systems From Anywhere
Securely Monitor Critical Systems From AnywhereSecurely Monitor Critical Systems From Anywhere
Securely Monitor Critical Systems From Anywhere
 
Leveraging Ignition for Smart Manufacturing and Digital Transformation
Leveraging Ignition for Smart Manufacturing and Digital TransformationLeveraging Ignition for Smart Manufacturing and Digital Transformation
Leveraging Ignition for Smart Manufacturing and Digital Transformation
 
6 Simple Steps to Enterprise Digital Transformation
6 Simple Steps to Enterprise Digital Transformation6 Simple Steps to Enterprise Digital Transformation
6 Simple Steps to Enterprise Digital Transformation
 
Pushing the Boundaries of Data Visualization
Pushing the Boundaries of Data VisualizationPushing the Boundaries of Data Visualization
Pushing the Boundaries of Data Visualization
 

Dernier

Implementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureImplementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureDinusha Kumarasiri
 
英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作qr0udbr0
 
VK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web DevelopmentVK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web Developmentvyaparkranti
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEEVICTOR MAESTRE RAMIREZ
 
Precise and Complete Requirements? An Elusive Goal
Precise and Complete Requirements? An Elusive GoalPrecise and Complete Requirements? An Elusive Goal
Precise and Complete Requirements? An Elusive GoalLionel Briand
 
Introduction Computer Science - Software Design.pdf
Introduction Computer Science - Software Design.pdfIntroduction Computer Science - Software Design.pdf
Introduction Computer Science - Software Design.pdfFerryKemperman
 
Software Coding for software engineering
Software Coding for software engineeringSoftware Coding for software engineering
Software Coding for software engineeringssuserb3a23b
 
Exploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdf
Exploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdfExploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdf
Exploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdfkalichargn70th171
 
SensoDat: Simulation-based Sensor Dataset of Self-driving Cars
SensoDat: Simulation-based Sensor Dataset of Self-driving CarsSensoDat: Simulation-based Sensor Dataset of Self-driving Cars
SensoDat: Simulation-based Sensor Dataset of Self-driving CarsChristian Birchler
 
Odoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 EnterpriseOdoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 Enterprisepreethippts
 
Comparing Linux OS Image Update Models - EOSS 2024.pdf
Comparing Linux OS Image Update Models - EOSS 2024.pdfComparing Linux OS Image Update Models - EOSS 2024.pdf
Comparing Linux OS Image Update Models - EOSS 2024.pdfDrew Moseley
 
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...OnePlan Solutions
 
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...confluent
 
CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceBrainSell Technologies
 
cpct NetworkING BASICS AND NETWORK TOOL.ppt
cpct NetworkING BASICS AND NETWORK TOOL.pptcpct NetworkING BASICS AND NETWORK TOOL.ppt
cpct NetworkING BASICS AND NETWORK TOOL.pptrcbcrtm
 
React Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief UtamaReact Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief UtamaHanief Utama
 
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...Matt Ray
 
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...Angel Borroy López
 
What is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need ItWhat is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need ItWave PLM
 

Dernier (20)

Implementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureImplementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with Azure
 
2.pdf Ejercicios de programación competitiva
2.pdf Ejercicios de programación competitiva2.pdf Ejercicios de programación competitiva
2.pdf Ejercicios de programación competitiva
 
英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作
 
VK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web DevelopmentVK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web Development
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEE
 
Precise and Complete Requirements? An Elusive Goal
Precise and Complete Requirements? An Elusive GoalPrecise and Complete Requirements? An Elusive Goal
Precise and Complete Requirements? An Elusive Goal
 
Introduction Computer Science - Software Design.pdf
Introduction Computer Science - Software Design.pdfIntroduction Computer Science - Software Design.pdf
Introduction Computer Science - Software Design.pdf
 
Software Coding for software engineering
Software Coding for software engineeringSoftware Coding for software engineering
Software Coding for software engineering
 
Exploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdf
Exploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdfExploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdf
Exploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdf
 
SensoDat: Simulation-based Sensor Dataset of Self-driving Cars
SensoDat: Simulation-based Sensor Dataset of Self-driving CarsSensoDat: Simulation-based Sensor Dataset of Self-driving Cars
SensoDat: Simulation-based Sensor Dataset of Self-driving Cars
 
Odoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 EnterpriseOdoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 Enterprise
 
Comparing Linux OS Image Update Models - EOSS 2024.pdf
Comparing Linux OS Image Update Models - EOSS 2024.pdfComparing Linux OS Image Update Models - EOSS 2024.pdf
Comparing Linux OS Image Update Models - EOSS 2024.pdf
 
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
 
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
 
CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. Salesforce
 
cpct NetworkING BASICS AND NETWORK TOOL.ppt
cpct NetworkING BASICS AND NETWORK TOOL.pptcpct NetworkING BASICS AND NETWORK TOOL.ppt
cpct NetworkING BASICS AND NETWORK TOOL.ppt
 
React Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief UtamaReact Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief Utama
 
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
 
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
 
What is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need ItWhat is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need It
 

Common Project Mistakes: Visualization, Alarms, and Security

  • 1.
  • 2. Moderator Kent Melville Sales Engineering Manager Inductive Automation
  • 3. About Inductive Automation About Inductive Automation • Founded in 2003 • Leader in HMI, SCADA, MES & IIoT software • Used by 56% of Fortune 100 companies • Over 2,700 integrators have joined our Integrator Program • Based in California, with international distributors around the world Learn more at: inductiveautomation.com/about
  • 4. Ignition: The Industrial Application Platform • Unlimited licensing model • Cross-platform compatibility • Based on IT-standard technologies • Scalable server-client architecture • Web-managed • Launch on desktop or mobile • Modular configurability • Rapid development and deployment One Universal Platform for HMI, SCADA, MES & IIoT: One Universal Platform for HMI/SCADA, MES & IIoT: • Unlimited licensing model • Cross-platform compatibility • Based on IT-standard technologies • Scalable server-client architecture • Web-based & web-managed • Web-deployed designer & clients • Modular configurability • Rapid development & deployment Ignition: Industrial Application Platform
  • 5. Presenters Dereck Saunders Senior Application Design Engineer Inductive Automation Mara Pillott Senior Application Design Engineer Inductive Automation
  • 6. Today’s Agenda • Introduction • Recognize Common Mistakes • Visualization • Alarms • Security • Conclusion and Q&A
  • 7. On our last webinar, we covered: ● Data collection & logging ● HMI design ● Scripting Previous webinar: https://inductiveautomation.com/resources/webinar/ common-project-mistakes-and-how-to-avoid-them Last Time on ‘Common Project Mistakes’
  • 8. Ignition is so easy to use that sometimes developers try to “brute force” their way to finding a solution. Ignition is designed to: ● Build assets ● Repeatedly use and/or modify them Recognize Common Mistakes
  • 9. Visualization Mistake: Unnecessarily rebuilding assets Building the same assets over again, either in the same project or in another one.
  • 10. Visualization Mistake: Unnecessarily rebuilding assets Every piece of equipment or area does not require its own dedicated screen or view.
  • 11. Visualization Solution: Parameterization & Indirect Tag Binding Parameters can be added to views and leveraged inside of bindings on the view to make the view dynamic. Benefits: ● Reduce amount of project resources that need to be managed. ● Reduce initial development time. ● Reduce time, effort & cost of future changes.
  • 12. Visualization Solution: Implementing View Parameters & Indirect Tag Bindings Adding view parameters to a view and utilizing them inside bindings and scripts on the view is a simple way to create dynamic, reusable visualization.
  • 13. Visualization Solution: Reusable visualization - Repeaters Repeater components, like the Flex Repeater, let you create multiple instances with the same look, feel and functionality.
  • 14. Visualization Mistake: Poorly Planned Transforms When working with a transform, always start with the end result in mind. In this example, we jump into binding the dropdown options to a named query. This approach will not give you usable options. The example dropdown shows us a list of states when we wanted a list of site names. How do we get the options we want?
  • 15. Visualization Solution: Plan the Transform Define Instance Structure First. • Start with a standard component. • Get to know the component structure. • Copy instance to your favorite text editor. In the dropdown example, we can see that a standard dropdown has an array of options. Each option has a value and label. { "value": "", "label": "" }
  • 16. Visualization Solution: Build Transform Based On Plan Here is a basic example for a script transform that will return a list of options from results such as a named query. Step 1: Define empty list of options. Step 2: Loop over records returned by query. Step 3: Build the instance. Use the copied structure from the standard component. Step 4: Add the new instance to the list. Step 5: Return the options.
  • 17. Visualization Mistake: Missing Property Changes in Transforms Text value is bound to state property. Both state and mode are used in the transform. Changes on state property will update the text value. Changes on mode property are ignored. We need to monitor property changes on both state and mode.
  • 18. Visualization Solution: Use Expression Structure Text value is bound to an expression structure using both state and mode. Changes on state or mode property updates the text value.
  • 19. Visualization Mistake: Overlaid Components for Styling Tedious Approach: • Create one custom component for each state. • Toggle visibility based on state • Overlay the components in a coordinate container. ❌ Not Reusable: Each component is custom configured. The colors and other styling are not reusable elsewhere. ❌ Not Maintainable: New states require new components. ❌ Not Mobile-Responsive: The colors and other styling are not reusable elsewhere.
  • 20. Visualization Solution: Use Style Classes Best Practice Approach: Create a style class for each status. ✓ Reusable: These classes can now be used anywhere in the project. ✓ Maintainable: Style changes are now made in only one place and apply everywhere in the project. ✓ Mobile-Responsive: Flex containers may be used when components are not overlaid.
  • 21. Visualization Solution: Map Style Class Using a Transform Reusable and Maintainable Solution: • Create only one component. • Define style classes • Bind the style to a property. • Use a transform to map each state to a style. Updates to style class will apply to all components using the class. Formatting changes will only need to be made on the one component. No need to copy-paste changes.
  • 22. Visualization Mistake: Overwriting Themes Themes • Provide initial styling • Overwritten by styles • CSS-based • Inheritable Customizing • Advanced feature • CSS knowledge required • Study the README Do Not Overwrite Built-In Themes Changes made to the built-in theme files will be replaced on Gateway start-up
  • 23. Visualization Solution: Inherit from Base Themes Start With Built-In Themes: • The base theme is the light theme • All themes extend from the base theme • Other themes are derived from the base theme • Use any derivative theme as an example • Adapt a built-in theme or create a custom theme
  • 24. Visualization Solution: Adapt a Built-In Theme • Add your own CSS file in a custom directory • Import Custom File In Entry File • Place custom import after other imports • Use double quotes around file names • Add semicolon at the end of each line Backup your themes files! @import "./light/index.css"; @import "./custom/overrides.css";
  • 25. Visualization Solution: Custom Themes • Start with built-in theme as an example • Create your own entry file in themes directory • Build your CSS • Select your theme in the Session Properties • Backup your files
  • 26. Visualization Shortcut: ALT + left click Instead of double-clicking to deep select and drill down to nested containers or components, using ALT + left click allows you to immediately select through to the “deepest” component or container that the mouse cursor is hovering over. Keyboard Shortcuts: https://docs.inductiveautomation.com/display/DOC81/Ke yboard+Shortcuts Select Through: https://docs.inductiveautomation.com/display/DOC81/W orking+with+Perspective+Components#WorkingwithPer spectiveComponents-DeepSelection
  • 27. Recap Visualization Mistakes: ● Rebuilding assets ● Poorly planned transforms ● Missing property changes ● Overlaid components for styling ● Overwriting themes Solutions: ➔ Dynamic visualization ➔ Plan with end result in mind ➔ Expression structures ➔ Map transforms to style class ➔ Custom themes
  • 28. Alarms Alarms are instrumental in preventing downtime but a poor alarm setup greatly diminishes how useful they are. Alarms should never be ignored.
  • 29. Alarms Mistake: Not Prioritizing Alarms Not prioritizing alarms will leave all configured alarms at the default Low priority.
  • 30. Alarms Solution: Prioritize alarms Use priority levels to differentiate between the severity of alarms. 5 levels: ● Diagnostic ● Low ● Medium ● High ● Critical
  • 31. Alarms Mistake: Not setting the display path for alarms Not setting the display path to a meaningful value will instead simply display the path of the tag that the alarm is configured on.
  • 32. Alarms Solution: Set the alarm’s display path
  • 33. Recap Alarm Mistakes: ● Not Prioritizing Alarms ● Not Setting the Display Path for Alarms Solutions: ➔ Prioritize Alarms ➔ Set the Alarm’s Display Path
  • 34. Security Mistake: • No security • Everyone in admin role • Everyone shares admin login Solution: • Implement security measures • Separate users by roles Ignition was designed with security in mind. Set security on both Gateway and Projects.
  • 35. Security Mistake: No security Solution: Role-based security on the Gateway Protects most critical areas: Designer and Gateway
  • 36. Security Mistake: No security Solution: Set project level security in Project Properties
  • 37. Security Mistake: No security on project components. Solution: Establish security based on roles. • Assign user roles. • Restrict access based on roles.
  • 38. Security Mistake: Security only on visualization Solution: Security on tags Export tags to bulk modify
  • 39. Security Mistake: Not encrypting all data. Solution: Use HTTP (SSL).
  • 40. Security Mistake: Not utilizing centralized user source for Enterprise solutions. Solution: Establish an active directory/SSO (IdP) Add an extra layer of protection with 2- factor authentication. Ignition Security Hardening Guide: https://inductiveautomation.com/resources/article/ignition- security-hardening-guide
  • 41. Security Mistake: No Gateway Backups Single Gateway Solution: ● Gateway Auto Backup Enterprise Solution: ● Collect Backup Agent Task
  • 42. Recap Security Mistakes: ● No security ● Uniform security clearance ● Security only on visualization ● Unencrypted HTTP ● No centralized user source ● No backups Solutions: ➔ Implement security measures ➔ Assign user-based security ➔ Add security on Tags ➔ Use SSL ➔ Active directory/SSO ➔ Automated backups
  • 43. Conclusion We all make mistakes no matter how much experience we have. Fortunately, Ignition gives you the tools to not only fix those mistakes, but turn them into strengths. Ignition provides many ways to make your projects more organized, efficient, stylish, and secure.
  • 44.
  • 45.
  • 46. International Distributors Australia iControls Pty Ltd. www.icontrols.com.au Brazil FG Automação Industrial www.fgltda.com.br Central America NV Tecnologías S.A. www.nvtecnologias.com France AXONE-iO www.axone-io.com Italy EFA Automazione S.p.A www.efa.it Norway Autic System AS www.autic.no South Africa Element8 https://element8.co.za/ Switzerland MPI Technologies https://mpi.ch/ Contact International Distribution Manager Annie Wise at: awise@inductiveautomation.com