SlideShare ist ein Scribd-Unternehmen logo
1 von 32
Downloaden Sie, um offline zu lesen
Monitoring in the era of
Cloud Computing
Speakers
Attilio Broglio - abroglio@create-net.org
Silvio Cretti - scretti@create-net.org
Webinar on November 26, 2015 - 15:00 CET
Who are we and what is our offer ?
■ Create-Net is a research centre active in the ICT field
and located in Trento (Italy)
■ Our Cloud Computing offer comprises:
Research and Consultancy in the Cloud Computing field
cloud architectures,
cloud deployment,
cloud management,
distributed cloud,
energy efficiency in the cloud
Training on Cloud Computing/Openstack (authorized Mirantis training
partner)
OpenStack free webinar list offered by Create-Net
Webinar Url
OpenStack fundamentals https://goo.gl/VRg5Nr
Platform as a Service (PaaS) and OpenStack https://goo.gl/VRg5Nr
OpenStack Networking https://goo.gl/Htcs2s
Monitoring in the era of Cloud Computing
Agenda
1. Introduction to Monitoring
2. Introduction to Ceilometer
■ Architecture
■ Agents (Compute/Central)
■ Storage & API
■ Quick Demo
3. Introduction to Monasca
■ Architecture
■ Events/Messages
■ Storage & API
■ Quick Demo
4. Conclusions and Trends
5. QA session
1.
Introduction to Monitoring
...in the Cloud Computing era
Introduction to the Monitoring
■ Monitoring a cloud requires a unified view of physical and
virtual resources and of cloud services focusing on the
customer SLA
■ Two complementary topics:
➪monitoring a cloud computing infrastructure (ref.
Ceilometer)
➪Monitoring as a Service - xaaS - not limited to a
specific cloud and offering higher level functionalities
above the simple data collection (ref. Monasca)
Tools of the trade
■How to monitor a (federated) cloud?
■What is on the market now?
■Some examples:
➪ OpenNMS
➪Nagios
➪Zabbix
➪IBM Tivoli - Netcool
➪Zenoss
➪Openstack Ceilometer
➪OpenStack Monasca
Modular (micro services)
Distributed and scalable
Fault tolerant
Open Source & Open API
Support for Big Data analytics
(trend)
2.
Introduction to Ceilometer
“..quando un nuvol vada sovr’essa..”
[Inf. XXXI ]
Introduction to Ceilometer (1/2)
OpenStack provides infrastructure as a service (IaaS) to end clients, it’s
necessary to be able to meter its performance and utilization for:
■ billing
■ benchmarking
■ scalability
■ statistics
Ceilometer aims to become the infrastructure to collect measurements within
OpenStack. Main goals:
■ efficient collection of metering (CPU, network costs, ..)
■ collecting data by monitoring notifications (from services or by polling the HW)
■ accessing and inserting the metering data through the REST API
■ expanding the framework to collect custom usage data (by plugins)
Introduction to Ceilometer (2/2)
What is a meter?
Three type of meters are defined in ceilometer:
■ Cumulative: Increasing over time (i.e. instance hours)
■ Gauge: Discrete items (i.e. floating IPs ...) and fluctuating values (such as disk I/O)
■ Delta: Changing over time (i.e. bandwidth)
Each meter is collected from one or more samples, which
are represented by counter objects:
■ counter_name: meter id (i.e. disk.ephemeral.size)
■ counter_type: counter types (cumulative, gauge, delta).
■ counter_volume: measured data (CPU, #cores)
Ceilometer-Architecture (1/2)
■ Agents:Rest API
central Agent compute Agent
collectors data
Stores
AMQP
glance
libvirt
nova-compute
RPC RPC
hypervisor APIAPI
■ Rest API: access to metering data
➪ central: Retrieve info not linked
to instances or compute node
➪ compute: polls metering data and
instances statistics from the
compute node
AMQP: message broker (RabbitMQ)
data stores: mongo (read/write)
collectors: message queues for
metrics
Ceilometer-Architecture (2/2)
Ceilometer offers 5 core services
divide in 3 main groups:
■ data agents
■ collection
■ alarming
The 5 blocks “daemons” are:
1. polling agent: polls OpenStack services and build Meters.
2. notification agent:
➪ listens to notifications on message queue
➪ converts to Events and Samples
➪ apply pipeline actions
3. collector daemon: gathers and records event and metering
data
4. api service: to query and view data recorded by collector
service
5. alarming: alarming system based on rules
Data Agent Collection AlarmingPolling Notification Collector API Alarming
Ceilometer-Agents (1/3)
How can we collect
meter/sample?
Two methods available to collect data:
■ Bus listener agent:
➪ events on the notification bus
➪ transforms them into Ceilometer samples
➪ community guideline (Oslo library)
➪ compliant with Notification Agent
■ Polling agents,
➪ polls API or other tool to collect information
(Δt)
➪ local or remote hypervisor API
Ceilometer-Agents (2/3)
Notification Agent?
..it listens for data
■ consumes messages from services
(Nova, Glance, Cinder, Neutron, ..)
■ loads one or more listener plugins
that listen to any topics (by
namespace)
■ redirects to the proper endpoint
(pipeline)
■ Event matching → wildcards e.g.
compute.instance.*.
■ Notifications can be converted into
Events
Ceilometer-Agents (3/3)
Polling Agent?
.. it asks for data
■ compute node: Polling for compute
resources is handled by a polling agent
running on the compute node (where
hypervisor is)
■ central node: Polling via service APIs for
non-compute resources.
■ The polling agent daemon is configured
to run one or more pollsters
✓ Δt for sample from pollsters (set on pipeline)
✓ passes the samples to the pipeline for
processing
Ceilometer-Storage and API (1/2)
Pipeline?
..manipulates data
Ceilometer uses pipeline for:
■ manipulate and publish samples it in various
combinations
■ combined by historical or temporal context
■ transform by a scaling factor
■ publishes using 3 different transports:
1. notifier: a notification based that pushes to a
message queue: (i.e. collector, external system)
2. udp: publishes samples using UDP packets;
3. kafka: publishes to a Kafka message queue
Ceilometer-Storage and API (2/2)
Collector?
■ gathers the processed event and metering data
(notification and polling agents)
■ validates data
■ writes the messages to: database, file, or http
From Juno, database is divided into 3 connections:
■ alarm
■ event
■ metering
API?
RESTFUL API (read/write data)
■ raw
■ statistics/filter/group
Ceilometer-Demo
CC License - Photo by Amy Loves Yah
3.
Introduction to Monasca
“intrammo a ritornar nel chiaro mondo..”
[Inf. XXXIV ]
Monasca - Introduction (1/2)
MONitoring As a Service sCAlable:
■ Highly-performant, scalable
■ Fault-tolerant, capable of big data retention
➪ process 100s of thousands metrics/sec
➪ data stored for ~ 1 year
■ Based on REST API (http not standard CollectID, NSCA ”Nagios”)
➪ storing
➪ querying (metrics/historical data)
■ Multi-tenant (by keystone)
➪ metrics submitted and authenticated by Keystone
➪ metrics stored with tenants reference
Monasca - Introduction (2/2)
MONitoring As a Service sCAlable:
■ Extensible based on micro-services message bus architecture
■ Real-time events processing
➪ threshold/alarm ->Metrics
➪ threshold/alarm ->storage/retrieval/statistics
■ Notification system
■ Real data:
➪ Performances: ~ 25K metrics/sec on three HP Proliant SL390s G7
➪ Apache 2.0 license
➪ Who is working on it: HP, IBM, Rackspace
Monasca - Architecture (1/4)
Monasca API (REST)
Horizon
Dashboard
Monasca
Client (CLI)System
Monasca
Agent
Config DB
mySQL
Metrics
Events DB
Alarms
Notification
Engine
Threshold
Engine
Anomaly and
Prediction
Engine
Events
Engine
Transform
Engine
Persister
Message
Queue
Kafka
Monasca - Architecture (2/4)
Monasca API (REST)
Monasca
Client (CLI)
Notification
Engine
Threshold
Engine
Anomaly &
Prediction
Engine
Events
Engine
Transform
Engine
Persister
Message
Queue
Kafka
Metrics
Events DB
Alarms
System
Monasca
Agent
Horizon
Dashboard
Monasca
Agent
Monasca Agent:
■ different subcomponents
■ different metrics
➪ statsd, nagios plugin, ceilometer
Monasca API:
■ REST API post/get metrics and events
(JSON)
■ query and get statistics and metrics, alarms,
alarm definitions, notifications
Monasca API (REST)
Message Queue “Kafka”:
■ receives
➪ metrics from API
➪ alarms from Threshold engine
➪ Publishes consumes events
■ RabbitMQ-> Kafka
Message
Queue
Kafka
POST
metrics
Publishes
metrics/events
Transform
Engine
Monasca - Architecture (3/4)
Monasca API (REST)
Monasca
Client (CLI)
Notification
Engine
Threshold
Engine
Anomaly &
Prediction
Engine
Events
Engine
Transform
Engine
Persister
Message
Queue
Kafka
Metrics
Events DB
Alarms
System
Monasca
Agent
Horizon
Dashboard
Monasca
Agent
Notification Engine:
➪ consumes alarms from kafka and notifies
(email, sms,.. )
Threshold engine:
➪ stream data processing (Apache Storm)
➪ computes threshold on metrics and publish
on kafka
Monasca API (REST)
Anomaly & Prediction engine:
➪ evaluates predictions and anomalies and
publish predicted metrics (or anomalies)
Message
Queue
Kafka
Events engine:
➪ manages events
Transform engine:
➪ transforms metrics into delta or time-based
derivative
➪ generates new metrics (Kafka) Notification
Engine
Threshold
Engine
Anomaly &
Prediction
Engine
Events
Engine
Monasca - Architecture (4/4)
Monasca API (REST)
Monasca
Client (CLI)
Notification
Engine
Threshold
Engine
Anomaly &
Prediction
Engine
Events
Engine
Transform
Engine
Persister
Message
Queue
Kafka
Metrics
Events DB
Alarms
System
Monasca
Agent
Horizon
Dashboard
Monasca
Agent
Persister:
■ Consumes alarms and metrics from Kafka
and stores into nonRelational DB
➪ InfluxDB
➪ Vertica
Horizon Dashboard:
■ Actions on alarms:
➪ CRUD alarm definitions
➪ read/delete alarm history
■ Actions on notifications:
➪ CRUD notifications methods
■ Actions on metrics
➪ visualizations of metrics “Grafana”
Monasca API (REST)
Message
Queue
Kafka
Notification
Engine
Threshold
Engine
Anomaly &
Prediction
Engine
Events
Engine
Persister
Horizon
Dashboard
Create alarms definitions
Query/Delete alarms
Create notifications method
Query Metrics
Monasca - Metrics flow (1/4)
Monasca
Agent
Metrics
Events DB
Alarms
Notification
Engine
Threshold
Engine
Transform
Engine
Persister
Message
Queue
Kafka
POST metric
1.0 publish metric
1.1.0 consume metrics
1.1.1 store metric
1.2.0 consume metric
1.2.2 publish metric
1.2.1 aggregate metric
1.3.0 consume metric1.3.3 publish alarm
1.3.2 theshold metric
2.1.0 consume alarm
2.1.1 send notification
2.2.0 consume alarms
2.2.1 store alarm
1.0 API authenticates and validates the
request and publishes the metric to Kafka
1.1 Persister consumes the metric from
Kafka and stores in the Metrics Store
1.2 The Transform Engine consumes the
metrics from kafka, performs transform and
aggregation operations on metrics, and
publishes metrics that it creates back to
Message Queue
1.3 Threshold Engine consumes metrics
from Kafka and evaluates alarms. If a state
change occurs in an alarm, an alarm is
published into kafka
2.1 The Notification Engine consumes
"alarm" from kafka, evaluates whether they
have a Notification Method associated with
it, and notifies
2.2 Persister consumes the "alarm" from
Kafka and stores it in the Alarm State
History
Monasca - Events flow (1/4)
Monasca
Agent
Metrics
Events DB
Alarms
Event Engine
Transform
Engine
Persister
Message
Queue
Kafka
POST event
1.0 publish event
1.1.0 consume raw event
1.1.1 store event
1.2.2 publish
tranformed event
1.2.1 transform raw event
into monasca event
1.3.0 consume
transformed event
2.0.0 fire event 1.0 API authenticates and validates the
request and publishes the event to Kafka
1.1 Persister consumes the event from
Kafka and stores in the Events Store
1.2 The Transform Engine consumes the
event from kafka, performs transform
and aggregation operations on events,
and publishes events that it creates back
to Message Queue
1.3 Event Engine consumes compliant
events from Kafka. It converts the event
into stream a “YAML”
2.0 Streams are processed by the Stream
Engine Winchester. If needed it publishes
Metric
Stack Distiller
StackTach
Winchester
1.3.0 add event
2.0.1 publish metric
1.2.0 consume raw event
Monasca - API
Keystone
● Metrics
● Transformations
● Alarms
● Notifications
● Streams
● Events
Service Catalog provided by keystone
http://my_monasca
http://my_stacktach
/metrics/
/transform/
/alarm-definitions/ or /alarms/
/notification-methods/
/streams/
/events/
Monasca API StackTach API Your API * Anomaly API
Monasca client StackTach client Your client* Anomaly client
Monasca-Demo
"Back to the Future with Michael J. Fox as Marty McFly" by Source. Licensed under Fair use via Wikipedia - here
4.
Conclusions
“E quindi uscimmo a riveder le stelle..”
[Inf. XXXIV ]
OpenStack Bootcamp
The main topics covered are:
• Overview on OpenStack and its
architecture,
• OpenStack networking;
• Swift;
• Ceilometer and its architecture,
• Heat Overview;
• OpenStack deployment.
At the end of the Bootcamp each student will be
able to:
• Describe the architecture of an OpenStack
deployment;
• Discuss the main functionalities of OpenStack;
• Deploy, configure and use the Openstack
services;
• Create and manage VMs and Virtual Networks;
• Create and manage, suers, roles, and quotas;
• Use the OpenStack CLI and Dashboard.
In partnership with Mirantis
For further information: http://openstack.create-net.org; openstack@create-net.org
Attilio Broglio
Software architect @ Create-net
abroglio@create-net.org
Tanks for your
attention!!
Silvio Cretti
Deputy Area Head @ Create-net
scretti@create-net.org
Webinar on November 26th, 2015 - 15:00 CET

Weitere ähnliche Inhalte

Was ist angesagt?

Flossuk2015 opennms1.0;21 03-2015
Flossuk2015 opennms1.0;21 03-2015Flossuk2015 opennms1.0;21 03-2015
Flossuk2015 opennms1.0;21 03-2015craiggallen
 
NSX, API, Automation and Unicorns
NSX, API, Automation and UnicornsNSX, API, Automation and Unicorns
NSX, API, Automation and UnicornsRomain DECKER
 
유연하고 확장성 있는 빅데이터 처리
유연하고 확장성 있는 빅데이터 처리유연하고 확장성 있는 빅데이터 처리
유연하고 확장성 있는 빅데이터 처리NAVER D2
 
RENCI User Group Meeting 2017 - I Upgraded iRODS and I still have all my hair
RENCI User Group Meeting 2017 - I Upgraded iRODS and I still have all my hairRENCI User Group Meeting 2017 - I Upgraded iRODS and I still have all my hair
RENCI User Group Meeting 2017 - I Upgraded iRODS and I still have all my hairJohn Constable
 
VMworld 2013: Extreme Performance Series: Network Speed Ahead
VMworld 2013: Extreme Performance Series: Network Speed Ahead VMworld 2013: Extreme Performance Series: Network Speed Ahead
VMworld 2013: Extreme Performance Series: Network Speed Ahead VMworld
 
Open stack advanced_part
Open stack advanced_partOpen stack advanced_part
Open stack advanced_partlilliput12
 
Unix Automation using centralized configuration management tool
Unix Automation using centralized configuration management toolUnix Automation using centralized configuration management tool
Unix Automation using centralized configuration management toolTorrid Networks Private Limited
 
CPU Optimizations in the CERN Cloud - February 2016
CPU Optimizations in the CERN Cloud - February 2016CPU Optimizations in the CERN Cloud - February 2016
CPU Optimizations in the CERN Cloud - February 2016Belmiro Moreira
 
Juniper Network Automation for KrDAG
Juniper Network Automation for KrDAGJuniper Network Automation for KrDAG
Juniper Network Automation for KrDAGKwonSun Bae
 
Toward 10,000 Containers on OpenStack
Toward 10,000 Containers on OpenStackToward 10,000 Containers on OpenStack
Toward 10,000 Containers on OpenStackTon Ngo
 
Securing your Pulsar Cluster with Vault_Chris Kellogg
Securing your Pulsar Cluster with Vault_Chris KelloggSecuring your Pulsar Cluster with Vault_Chris Kellogg
Securing your Pulsar Cluster with Vault_Chris KelloggStreamNative
 
Openstack starter-guide-diablo
Openstack starter-guide-diabloOpenstack starter-guide-diablo
Openstack starter-guide-diablobabycat_feifei
 
Cumulus Linux 2.5 Overview
Cumulus Linux 2.5 OverviewCumulus Linux 2.5 Overview
Cumulus Linux 2.5 OverviewCumulus Networks
 
Linux conna kpatch-without-stopmachine-fixed
Linux conna kpatch-without-stopmachine-fixedLinux conna kpatch-without-stopmachine-fixed
Linux conna kpatch-without-stopmachine-fixedTommy Lee
 
Rate limiters in big data systems
Rate limiters in big data systemsRate limiters in big data systems
Rate limiters in big data systemsSandeep Joshi
 
AWS re:Invent 2016: Encryption: It Was the Best of Controls, It Was the Worst...
AWS re:Invent 2016: Encryption: It Was the Best of Controls, It Was the Worst...AWS re:Invent 2016: Encryption: It Was the Best of Controls, It Was the Worst...
AWS re:Invent 2016: Encryption: It Was the Best of Controls, It Was the Worst...Amazon Web Services
 
OpenStack Summit Tokyo - Know-how of Challlenging Deploy/Operation NTT DOCOMO...
OpenStack Summit Tokyo - Know-how of Challlenging Deploy/Operation NTT DOCOMO...OpenStack Summit Tokyo - Know-how of Challlenging Deploy/Operation NTT DOCOMO...
OpenStack Summit Tokyo - Know-how of Challlenging Deploy/Operation NTT DOCOMO...Masaaki Nakagawa
 
Ovs perf
Ovs perfOvs perf
Ovs perfMadhu c
 

Was ist angesagt? (20)

Flossuk2015 opennms1.0;21 03-2015
Flossuk2015 opennms1.0;21 03-2015Flossuk2015 opennms1.0;21 03-2015
Flossuk2015 opennms1.0;21 03-2015
 
NSX, API, Automation and Unicorns
NSX, API, Automation and UnicornsNSX, API, Automation and Unicorns
NSX, API, Automation and Unicorns
 
유연하고 확장성 있는 빅데이터 처리
유연하고 확장성 있는 빅데이터 처리유연하고 확장성 있는 빅데이터 처리
유연하고 확장성 있는 빅데이터 처리
 
RENCI User Group Meeting 2017 - I Upgraded iRODS and I still have all my hair
RENCI User Group Meeting 2017 - I Upgraded iRODS and I still have all my hairRENCI User Group Meeting 2017 - I Upgraded iRODS and I still have all my hair
RENCI User Group Meeting 2017 - I Upgraded iRODS and I still have all my hair
 
VMworld 2013: Extreme Performance Series: Network Speed Ahead
VMworld 2013: Extreme Performance Series: Network Speed Ahead VMworld 2013: Extreme Performance Series: Network Speed Ahead
VMworld 2013: Extreme Performance Series: Network Speed Ahead
 
Open stack advanced_part
Open stack advanced_partOpen stack advanced_part
Open stack advanced_part
 
Unix Automation using centralized configuration management tool
Unix Automation using centralized configuration management toolUnix Automation using centralized configuration management tool
Unix Automation using centralized configuration management tool
 
CPU Optimizations in the CERN Cloud - February 2016
CPU Optimizations in the CERN Cloud - February 2016CPU Optimizations in the CERN Cloud - February 2016
CPU Optimizations in the CERN Cloud - February 2016
 
Juniper Network Automation for KrDAG
Juniper Network Automation for KrDAGJuniper Network Automation for KrDAG
Juniper Network Automation for KrDAG
 
Toward 10,000 Containers on OpenStack
Toward 10,000 Containers on OpenStackToward 10,000 Containers on OpenStack
Toward 10,000 Containers on OpenStack
 
Securing your Pulsar Cluster with Vault_Chris Kellogg
Securing your Pulsar Cluster with Vault_Chris KelloggSecuring your Pulsar Cluster with Vault_Chris Kellogg
Securing your Pulsar Cluster with Vault_Chris Kellogg
 
Openstack starter-guide-diablo
Openstack starter-guide-diabloOpenstack starter-guide-diablo
Openstack starter-guide-diablo
 
Cumulus Linux 2.5 Overview
Cumulus Linux 2.5 OverviewCumulus Linux 2.5 Overview
Cumulus Linux 2.5 Overview
 
HA in OpenStack service - meetup #9
HA in OpenStack service - meetup #9HA in OpenStack service - meetup #9
HA in OpenStack service - meetup #9
 
OTRS
OTRSOTRS
OTRS
 
Linux conna kpatch-without-stopmachine-fixed
Linux conna kpatch-without-stopmachine-fixedLinux conna kpatch-without-stopmachine-fixed
Linux conna kpatch-without-stopmachine-fixed
 
Rate limiters in big data systems
Rate limiters in big data systemsRate limiters in big data systems
Rate limiters in big data systems
 
AWS re:Invent 2016: Encryption: It Was the Best of Controls, It Was the Worst...
AWS re:Invent 2016: Encryption: It Was the Best of Controls, It Was the Worst...AWS re:Invent 2016: Encryption: It Was the Best of Controls, It Was the Worst...
AWS re:Invent 2016: Encryption: It Was the Best of Controls, It Was the Worst...
 
OpenStack Summit Tokyo - Know-how of Challlenging Deploy/Operation NTT DOCOMO...
OpenStack Summit Tokyo - Know-how of Challlenging Deploy/Operation NTT DOCOMO...OpenStack Summit Tokyo - Know-how of Challlenging Deploy/Operation NTT DOCOMO...
OpenStack Summit Tokyo - Know-how of Challlenging Deploy/Operation NTT DOCOMO...
 
Ovs perf
Ovs perfOvs perf
Ovs perf
 

Andere mochten auch

Openstackサテライトプロジェクトまとめ
OpenstackサテライトプロジェクトまとめOpenstackサテライトプロジェクトまとめ
OpenstackサテライトプロジェクトまとめTakahiro Shida
 
Storing VMs with Cinder and Ceph RBD.pdf
Storing VMs with Cinder and Ceph RBD.pdfStoring VMs with Cinder and Ceph RBD.pdf
Storing VMs with Cinder and Ceph RBD.pdfOpenStack Foundation
 
Ceilo componentization diagrams
Ceilo componentization diagramsCeilo componentization diagrams
Ceilo componentization diagramsFabio Giannetti
 
Building A Scalable Open Source Storage Solution
Building A Scalable Open Source Storage SolutionBuilding A Scalable Open Source Storage Solution
Building A Scalable Open Source Storage SolutionPhil Cryer
 
Moving towards unified logging
Moving towards unified loggingMoving towards unified logging
Moving towards unified loggingPhil Cryer
 
Enforcing Application SLA with Congress and Monasca
Enforcing Application SLA with Congress and MonascaEnforcing Application SLA with Congress and Monasca
Enforcing Application SLA with Congress and MonascaFabio Giannetti
 
Orchestrierung einer Private Cloud mit OpenStack Heat
Orchestrierung einer Private Cloud mit OpenStack Heat Orchestrierung einer Private Cloud mit OpenStack Heat
Orchestrierung einer Private Cloud mit OpenStack Heat B1 Systems GmbH
 
Monasca 를 이용한 cloud 모니터링 final
Monasca 를 이용한 cloud 모니터링 finalMonasca 를 이용한 cloud 모니터링 final
Monasca 를 이용한 cloud 모니터링 finalSangWook Byun
 
openstackの仮想マシンHA機能の現状と今後の方向性
openstackの仮想マシンHA機能の現状と今後の方向性openstackの仮想マシンHA機能の現状と今後の方向性
openstackの仮想マシンHA機能の現状と今後の方向性Sampath Priyankara
 
Open technet openstack
Open technet openstackOpen technet openstack
Open technet openstackNalee Jang
 
오픈스택 커뮤니티 소개 및 기술 동향
오픈스택 커뮤니티 소개 및 기술 동향오픈스택 커뮤니티 소개 및 기술 동향
오픈스택 커뮤니티 소개 및 기술 동향Nalee Jang
 
Salt - A Scalable Systems Management Solution for Datacenters
Salt - A Scalable Systems Management Solution for DatacentersSalt - A Scalable Systems Management Solution for Datacenters
Salt - A Scalable Systems Management Solution for DatacentersB1 Systems GmbH
 
[OpenStack Days Korea 2016] Track1 - Monasca를 이용한 Cloud 모니터링
[OpenStack Days Korea 2016] Track1 - Monasca를 이용한 Cloud 모니터링[OpenStack Days Korea 2016] Track1 - Monasca를 이용한 Cloud 모니터링
[OpenStack Days Korea 2016] Track1 - Monasca를 이용한 Cloud 모니터링OpenStack Korea Community
 

Andere mochten auch (13)

Openstackサテライトプロジェクトまとめ
OpenstackサテライトプロジェクトまとめOpenstackサテライトプロジェクトまとめ
Openstackサテライトプロジェクトまとめ
 
Storing VMs with Cinder and Ceph RBD.pdf
Storing VMs with Cinder and Ceph RBD.pdfStoring VMs with Cinder and Ceph RBD.pdf
Storing VMs with Cinder and Ceph RBD.pdf
 
Ceilo componentization diagrams
Ceilo componentization diagramsCeilo componentization diagrams
Ceilo componentization diagrams
 
Building A Scalable Open Source Storage Solution
Building A Scalable Open Source Storage SolutionBuilding A Scalable Open Source Storage Solution
Building A Scalable Open Source Storage Solution
 
Moving towards unified logging
Moving towards unified loggingMoving towards unified logging
Moving towards unified logging
 
Enforcing Application SLA with Congress and Monasca
Enforcing Application SLA with Congress and MonascaEnforcing Application SLA with Congress and Monasca
Enforcing Application SLA with Congress and Monasca
 
Orchestrierung einer Private Cloud mit OpenStack Heat
Orchestrierung einer Private Cloud mit OpenStack Heat Orchestrierung einer Private Cloud mit OpenStack Heat
Orchestrierung einer Private Cloud mit OpenStack Heat
 
Monasca 를 이용한 cloud 모니터링 final
Monasca 를 이용한 cloud 모니터링 finalMonasca 를 이용한 cloud 모니터링 final
Monasca 를 이용한 cloud 모니터링 final
 
openstackの仮想マシンHA機能の現状と今後の方向性
openstackの仮想マシンHA機能の現状と今後の方向性openstackの仮想マシンHA機能の現状と今後の方向性
openstackの仮想マシンHA機能の現状と今後の方向性
 
Open technet openstack
Open technet openstackOpen technet openstack
Open technet openstack
 
오픈스택 커뮤니티 소개 및 기술 동향
오픈스택 커뮤니티 소개 및 기술 동향오픈스택 커뮤니티 소개 및 기술 동향
오픈스택 커뮤니티 소개 및 기술 동향
 
Salt - A Scalable Systems Management Solution for Datacenters
Salt - A Scalable Systems Management Solution for DatacentersSalt - A Scalable Systems Management Solution for Datacenters
Salt - A Scalable Systems Management Solution for Datacenters
 
[OpenStack Days Korea 2016] Track1 - Monasca를 이용한 Cloud 모니터링
[OpenStack Days Korea 2016] Track1 - Monasca를 이용한 Cloud 모니터링[OpenStack Days Korea 2016] Track1 - Monasca를 이용한 Cloud 모니터링
[OpenStack Days Korea 2016] Track1 - Monasca를 이용한 Cloud 모니터링
 

Ähnlich wie Webinar Monitoring in era of cloud computing

Adventures in Observability - Clickhouse and Instana
Adventures in Observability - Clickhouse and InstanaAdventures in Observability - Clickhouse and Instana
Adventures in Observability - Clickhouse and InstanaMarcel Birkner
 
Adventures in Observability: How in-house ClickHouse deployment enabled Inst...
 Adventures in Observability: How in-house ClickHouse deployment enabled Inst... Adventures in Observability: How in-house ClickHouse deployment enabled Inst...
Adventures in Observability: How in-house ClickHouse deployment enabled Inst...Altinity Ltd
 
Kubernetes #2 monitoring
Kubernetes #2   monitoring Kubernetes #2   monitoring
Kubernetes #2 monitoring Terry Cho
 
Monitoring Node.js Microservices on CloudFoundry with Open Source Tools and a...
Monitoring Node.js Microservices on CloudFoundry with Open Source Tools and a...Monitoring Node.js Microservices on CloudFoundry with Open Source Tools and a...
Monitoring Node.js Microservices on CloudFoundry with Open Source Tools and a...Tony Erwin
 
How to Improve the Observability of Apache Cassandra and Kafka applications...
How to Improve the Observability of Apache Cassandra and Kafka applications...How to Improve the Observability of Apache Cassandra and Kafka applications...
How to Improve the Observability of Apache Cassandra and Kafka applications...Paul Brebner
 
Network Telemetry
Network TelemetryNetwork Telemetry
Network TelemetryAalok Shah
 
Native container monitoring
Native container monitoringNative container monitoring
Native container monitoringRohit Jnagal
 
Monitoring in Big Data Platform - Albert Lewandowski, GetInData
Monitoring in Big Data Platform - Albert Lewandowski, GetInDataMonitoring in Big Data Platform - Albert Lewandowski, GetInData
Monitoring in Big Data Platform - Albert Lewandowski, GetInDataGetInData
 
Network Monitoring System ppt.pdf
Network Monitoring System ppt.pdfNetwork Monitoring System ppt.pdf
Network Monitoring System ppt.pdfkristinatemen
 
network monitoring system ppt
network monitoring system pptnetwork monitoring system ppt
network monitoring system pptashutosh rai
 
ApacheCon2019 Talk: Improving the Observability of Cassandra, Kafka and Kuber...
ApacheCon2019 Talk: Improving the Observability of Cassandra, Kafka and Kuber...ApacheCon2019 Talk: Improving the Observability of Cassandra, Kafka and Kuber...
ApacheCon2019 Talk: Improving the Observability of Cassandra, Kafka and Kuber...Paul Brebner
 
Free OpManager training Part3- Network performance monitoring
Free OpManager training Part3- Network performance monitoringFree OpManager training Part3- Network performance monitoring
Free OpManager training Part3- Network performance monitoringManageEngine, Zoho Corporation
 
[DSC Europe 23] Pramod Immaneni - Real-time analytics at IoT scale
[DSC Europe 23] Pramod Immaneni - Real-time analytics at IoT scale[DSC Europe 23] Pramod Immaneni - Real-time analytics at IoT scale
[DSC Europe 23] Pramod Immaneni - Real-time analytics at IoT scaleDataScienceConferenc1
 
Intelligent Monitoring
Intelligent MonitoringIntelligent Monitoring
Intelligent MonitoringIntelie
 
Timely Year Two: Lessons Learned Building a Scalable Metrics Analytic System
Timely Year Two: Lessons Learned Building a Scalable Metrics Analytic SystemTimely Year Two: Lessons Learned Building a Scalable Metrics Analytic System
Timely Year Two: Lessons Learned Building a Scalable Metrics Analytic SystemAccumulo Summit
 
Monitoring - deeper dive
Monitoring  - deeper diveMonitoring  - deeper dive
Monitoring - deeper diveRobert Kubiś
 
network-management Web base.ppt
network-management Web base.pptnetwork-management Web base.ppt
network-management Web base.pptAssadLeo1
 
MeetUp Monitoring with Prometheus and Grafana (September 2018)
MeetUp Monitoring with Prometheus and Grafana (September 2018)MeetUp Monitoring with Prometheus and Grafana (September 2018)
MeetUp Monitoring with Prometheus and Grafana (September 2018)Lucas Jellema
 
A Practical Deep Dive into Observability of Streaming Applications with Kosta...
A Practical Deep Dive into Observability of Streaming Applications with Kosta...A Practical Deep Dive into Observability of Streaming Applications with Kosta...
A Practical Deep Dive into Observability of Streaming Applications with Kosta...HostedbyConfluent
 

Ähnlich wie Webinar Monitoring in era of cloud computing (20)

Adventures in Observability - Clickhouse and Instana
Adventures in Observability - Clickhouse and InstanaAdventures in Observability - Clickhouse and Instana
Adventures in Observability - Clickhouse and Instana
 
Adventures in Observability: How in-house ClickHouse deployment enabled Inst...
 Adventures in Observability: How in-house ClickHouse deployment enabled Inst... Adventures in Observability: How in-house ClickHouse deployment enabled Inst...
Adventures in Observability: How in-house ClickHouse deployment enabled Inst...
 
Kubernetes #2 monitoring
Kubernetes #2   monitoring Kubernetes #2   monitoring
Kubernetes #2 monitoring
 
Monitoring Node.js Microservices on CloudFoundry with Open Source Tools and a...
Monitoring Node.js Microservices on CloudFoundry with Open Source Tools and a...Monitoring Node.js Microservices on CloudFoundry with Open Source Tools and a...
Monitoring Node.js Microservices on CloudFoundry with Open Source Tools and a...
 
How to Improve the Observability of Apache Cassandra and Kafka applications...
How to Improve the Observability of Apache Cassandra and Kafka applications...How to Improve the Observability of Apache Cassandra and Kafka applications...
How to Improve the Observability of Apache Cassandra and Kafka applications...
 
Network Telemetry
Network TelemetryNetwork Telemetry
Network Telemetry
 
Native container monitoring
Native container monitoringNative container monitoring
Native container monitoring
 
Native Container Monitoring
Native Container MonitoringNative Container Monitoring
Native Container Monitoring
 
Monitoring in Big Data Platform - Albert Lewandowski, GetInData
Monitoring in Big Data Platform - Albert Lewandowski, GetInDataMonitoring in Big Data Platform - Albert Lewandowski, GetInData
Monitoring in Big Data Platform - Albert Lewandowski, GetInData
 
Network Monitoring System ppt.pdf
Network Monitoring System ppt.pdfNetwork Monitoring System ppt.pdf
Network Monitoring System ppt.pdf
 
network monitoring system ppt
network monitoring system pptnetwork monitoring system ppt
network monitoring system ppt
 
ApacheCon2019 Talk: Improving the Observability of Cassandra, Kafka and Kuber...
ApacheCon2019 Talk: Improving the Observability of Cassandra, Kafka and Kuber...ApacheCon2019 Talk: Improving the Observability of Cassandra, Kafka and Kuber...
ApacheCon2019 Talk: Improving the Observability of Cassandra, Kafka and Kuber...
 
Free OpManager training Part3- Network performance monitoring
Free OpManager training Part3- Network performance monitoringFree OpManager training Part3- Network performance monitoring
Free OpManager training Part3- Network performance monitoring
 
[DSC Europe 23] Pramod Immaneni - Real-time analytics at IoT scale
[DSC Europe 23] Pramod Immaneni - Real-time analytics at IoT scale[DSC Europe 23] Pramod Immaneni - Real-time analytics at IoT scale
[DSC Europe 23] Pramod Immaneni - Real-time analytics at IoT scale
 
Intelligent Monitoring
Intelligent MonitoringIntelligent Monitoring
Intelligent Monitoring
 
Timely Year Two: Lessons Learned Building a Scalable Metrics Analytic System
Timely Year Two: Lessons Learned Building a Scalable Metrics Analytic SystemTimely Year Two: Lessons Learned Building a Scalable Metrics Analytic System
Timely Year Two: Lessons Learned Building a Scalable Metrics Analytic System
 
Monitoring - deeper dive
Monitoring  - deeper diveMonitoring  - deeper dive
Monitoring - deeper dive
 
network-management Web base.ppt
network-management Web base.pptnetwork-management Web base.ppt
network-management Web base.ppt
 
MeetUp Monitoring with Prometheus and Grafana (September 2018)
MeetUp Monitoring with Prometheus and Grafana (September 2018)MeetUp Monitoring with Prometheus and Grafana (September 2018)
MeetUp Monitoring with Prometheus and Grafana (September 2018)
 
A Practical Deep Dive into Observability of Streaming Applications with Kosta...
A Practical Deep Dive into Observability of Streaming Applications with Kosta...A Practical Deep Dive into Observability of Streaming Applications with Kosta...
A Practical Deep Dive into Observability of Streaming Applications with Kosta...
 

Kürzlich hochgeladen

GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 

Kürzlich hochgeladen (20)

GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 

Webinar Monitoring in era of cloud computing

  • 1. Monitoring in the era of Cloud Computing Speakers Attilio Broglio - abroglio@create-net.org Silvio Cretti - scretti@create-net.org Webinar on November 26, 2015 - 15:00 CET
  • 2. Who are we and what is our offer ? ■ Create-Net is a research centre active in the ICT field and located in Trento (Italy) ■ Our Cloud Computing offer comprises: Research and Consultancy in the Cloud Computing field cloud architectures, cloud deployment, cloud management, distributed cloud, energy efficiency in the cloud Training on Cloud Computing/Openstack (authorized Mirantis training partner)
  • 3. OpenStack free webinar list offered by Create-Net Webinar Url OpenStack fundamentals https://goo.gl/VRg5Nr Platform as a Service (PaaS) and OpenStack https://goo.gl/VRg5Nr OpenStack Networking https://goo.gl/Htcs2s Monitoring in the era of Cloud Computing
  • 4. Agenda 1. Introduction to Monitoring 2. Introduction to Ceilometer ■ Architecture ■ Agents (Compute/Central) ■ Storage & API ■ Quick Demo 3. Introduction to Monasca ■ Architecture ■ Events/Messages ■ Storage & API ■ Quick Demo 4. Conclusions and Trends 5. QA session
  • 5. 1. Introduction to Monitoring ...in the Cloud Computing era
  • 6. Introduction to the Monitoring ■ Monitoring a cloud requires a unified view of physical and virtual resources and of cloud services focusing on the customer SLA ■ Two complementary topics: ➪monitoring a cloud computing infrastructure (ref. Ceilometer) ➪Monitoring as a Service - xaaS - not limited to a specific cloud and offering higher level functionalities above the simple data collection (ref. Monasca)
  • 7. Tools of the trade ■How to monitor a (federated) cloud? ■What is on the market now? ■Some examples: ➪ OpenNMS ➪Nagios ➪Zabbix ➪IBM Tivoli - Netcool ➪Zenoss ➪Openstack Ceilometer ➪OpenStack Monasca Modular (micro services) Distributed and scalable Fault tolerant Open Source & Open API Support for Big Data analytics (trend)
  • 8. 2. Introduction to Ceilometer “..quando un nuvol vada sovr’essa..” [Inf. XXXI ]
  • 9. Introduction to Ceilometer (1/2) OpenStack provides infrastructure as a service (IaaS) to end clients, it’s necessary to be able to meter its performance and utilization for: ■ billing ■ benchmarking ■ scalability ■ statistics Ceilometer aims to become the infrastructure to collect measurements within OpenStack. Main goals: ■ efficient collection of metering (CPU, network costs, ..) ■ collecting data by monitoring notifications (from services or by polling the HW) ■ accessing and inserting the metering data through the REST API ■ expanding the framework to collect custom usage data (by plugins)
  • 10. Introduction to Ceilometer (2/2) What is a meter? Three type of meters are defined in ceilometer: ■ Cumulative: Increasing over time (i.e. instance hours) ■ Gauge: Discrete items (i.e. floating IPs ...) and fluctuating values (such as disk I/O) ■ Delta: Changing over time (i.e. bandwidth) Each meter is collected from one or more samples, which are represented by counter objects: ■ counter_name: meter id (i.e. disk.ephemeral.size) ■ counter_type: counter types (cumulative, gauge, delta). ■ counter_volume: measured data (CPU, #cores)
  • 11. Ceilometer-Architecture (1/2) ■ Agents:Rest API central Agent compute Agent collectors data Stores AMQP glance libvirt nova-compute RPC RPC hypervisor APIAPI ■ Rest API: access to metering data ➪ central: Retrieve info not linked to instances or compute node ➪ compute: polls metering data and instances statistics from the compute node AMQP: message broker (RabbitMQ) data stores: mongo (read/write) collectors: message queues for metrics
  • 12. Ceilometer-Architecture (2/2) Ceilometer offers 5 core services divide in 3 main groups: ■ data agents ■ collection ■ alarming The 5 blocks “daemons” are: 1. polling agent: polls OpenStack services and build Meters. 2. notification agent: ➪ listens to notifications on message queue ➪ converts to Events and Samples ➪ apply pipeline actions 3. collector daemon: gathers and records event and metering data 4. api service: to query and view data recorded by collector service 5. alarming: alarming system based on rules Data Agent Collection AlarmingPolling Notification Collector API Alarming
  • 13. Ceilometer-Agents (1/3) How can we collect meter/sample? Two methods available to collect data: ■ Bus listener agent: ➪ events on the notification bus ➪ transforms them into Ceilometer samples ➪ community guideline (Oslo library) ➪ compliant with Notification Agent ■ Polling agents, ➪ polls API or other tool to collect information (Δt) ➪ local or remote hypervisor API
  • 14. Ceilometer-Agents (2/3) Notification Agent? ..it listens for data ■ consumes messages from services (Nova, Glance, Cinder, Neutron, ..) ■ loads one or more listener plugins that listen to any topics (by namespace) ■ redirects to the proper endpoint (pipeline) ■ Event matching → wildcards e.g. compute.instance.*. ■ Notifications can be converted into Events
  • 15. Ceilometer-Agents (3/3) Polling Agent? .. it asks for data ■ compute node: Polling for compute resources is handled by a polling agent running on the compute node (where hypervisor is) ■ central node: Polling via service APIs for non-compute resources. ■ The polling agent daemon is configured to run one or more pollsters ✓ Δt for sample from pollsters (set on pipeline) ✓ passes the samples to the pipeline for processing
  • 16. Ceilometer-Storage and API (1/2) Pipeline? ..manipulates data Ceilometer uses pipeline for: ■ manipulate and publish samples it in various combinations ■ combined by historical or temporal context ■ transform by a scaling factor ■ publishes using 3 different transports: 1. notifier: a notification based that pushes to a message queue: (i.e. collector, external system) 2. udp: publishes samples using UDP packets; 3. kafka: publishes to a Kafka message queue
  • 17. Ceilometer-Storage and API (2/2) Collector? ■ gathers the processed event and metering data (notification and polling agents) ■ validates data ■ writes the messages to: database, file, or http From Juno, database is divided into 3 connections: ■ alarm ■ event ■ metering API? RESTFUL API (read/write data) ■ raw ■ statistics/filter/group
  • 18. Ceilometer-Demo CC License - Photo by Amy Loves Yah
  • 19. 3. Introduction to Monasca “intrammo a ritornar nel chiaro mondo..” [Inf. XXXIV ]
  • 20. Monasca - Introduction (1/2) MONitoring As a Service sCAlable: ■ Highly-performant, scalable ■ Fault-tolerant, capable of big data retention ➪ process 100s of thousands metrics/sec ➪ data stored for ~ 1 year ■ Based on REST API (http not standard CollectID, NSCA ”Nagios”) ➪ storing ➪ querying (metrics/historical data) ■ Multi-tenant (by keystone) ➪ metrics submitted and authenticated by Keystone ➪ metrics stored with tenants reference
  • 21. Monasca - Introduction (2/2) MONitoring As a Service sCAlable: ■ Extensible based on micro-services message bus architecture ■ Real-time events processing ➪ threshold/alarm ->Metrics ➪ threshold/alarm ->storage/retrieval/statistics ■ Notification system ■ Real data: ➪ Performances: ~ 25K metrics/sec on three HP Proliant SL390s G7 ➪ Apache 2.0 license ➪ Who is working on it: HP, IBM, Rackspace
  • 22. Monasca - Architecture (1/4) Monasca API (REST) Horizon Dashboard Monasca Client (CLI)System Monasca Agent Config DB mySQL Metrics Events DB Alarms Notification Engine Threshold Engine Anomaly and Prediction Engine Events Engine Transform Engine Persister Message Queue Kafka
  • 23. Monasca - Architecture (2/4) Monasca API (REST) Monasca Client (CLI) Notification Engine Threshold Engine Anomaly & Prediction Engine Events Engine Transform Engine Persister Message Queue Kafka Metrics Events DB Alarms System Monasca Agent Horizon Dashboard Monasca Agent Monasca Agent: ■ different subcomponents ■ different metrics ➪ statsd, nagios plugin, ceilometer Monasca API: ■ REST API post/get metrics and events (JSON) ■ query and get statistics and metrics, alarms, alarm definitions, notifications Monasca API (REST) Message Queue “Kafka”: ■ receives ➪ metrics from API ➪ alarms from Threshold engine ➪ Publishes consumes events ■ RabbitMQ-> Kafka Message Queue Kafka POST metrics Publishes metrics/events
  • 24. Transform Engine Monasca - Architecture (3/4) Monasca API (REST) Monasca Client (CLI) Notification Engine Threshold Engine Anomaly & Prediction Engine Events Engine Transform Engine Persister Message Queue Kafka Metrics Events DB Alarms System Monasca Agent Horizon Dashboard Monasca Agent Notification Engine: ➪ consumes alarms from kafka and notifies (email, sms,.. ) Threshold engine: ➪ stream data processing (Apache Storm) ➪ computes threshold on metrics and publish on kafka Monasca API (REST) Anomaly & Prediction engine: ➪ evaluates predictions and anomalies and publish predicted metrics (or anomalies) Message Queue Kafka Events engine: ➪ manages events Transform engine: ➪ transforms metrics into delta or time-based derivative ➪ generates new metrics (Kafka) Notification Engine Threshold Engine Anomaly & Prediction Engine Events Engine
  • 25. Monasca - Architecture (4/4) Monasca API (REST) Monasca Client (CLI) Notification Engine Threshold Engine Anomaly & Prediction Engine Events Engine Transform Engine Persister Message Queue Kafka Metrics Events DB Alarms System Monasca Agent Horizon Dashboard Monasca Agent Persister: ■ Consumes alarms and metrics from Kafka and stores into nonRelational DB ➪ InfluxDB ➪ Vertica Horizon Dashboard: ■ Actions on alarms: ➪ CRUD alarm definitions ➪ read/delete alarm history ■ Actions on notifications: ➪ CRUD notifications methods ■ Actions on metrics ➪ visualizations of metrics “Grafana” Monasca API (REST) Message Queue Kafka Notification Engine Threshold Engine Anomaly & Prediction Engine Events Engine Persister Horizon Dashboard Create alarms definitions Query/Delete alarms Create notifications method Query Metrics
  • 26. Monasca - Metrics flow (1/4) Monasca Agent Metrics Events DB Alarms Notification Engine Threshold Engine Transform Engine Persister Message Queue Kafka POST metric 1.0 publish metric 1.1.0 consume metrics 1.1.1 store metric 1.2.0 consume metric 1.2.2 publish metric 1.2.1 aggregate metric 1.3.0 consume metric1.3.3 publish alarm 1.3.2 theshold metric 2.1.0 consume alarm 2.1.1 send notification 2.2.0 consume alarms 2.2.1 store alarm 1.0 API authenticates and validates the request and publishes the metric to Kafka 1.1 Persister consumes the metric from Kafka and stores in the Metrics Store 1.2 The Transform Engine consumes the metrics from kafka, performs transform and aggregation operations on metrics, and publishes metrics that it creates back to Message Queue 1.3 Threshold Engine consumes metrics from Kafka and evaluates alarms. If a state change occurs in an alarm, an alarm is published into kafka 2.1 The Notification Engine consumes "alarm" from kafka, evaluates whether they have a Notification Method associated with it, and notifies 2.2 Persister consumes the "alarm" from Kafka and stores it in the Alarm State History
  • 27. Monasca - Events flow (1/4) Monasca Agent Metrics Events DB Alarms Event Engine Transform Engine Persister Message Queue Kafka POST event 1.0 publish event 1.1.0 consume raw event 1.1.1 store event 1.2.2 publish tranformed event 1.2.1 transform raw event into monasca event 1.3.0 consume transformed event 2.0.0 fire event 1.0 API authenticates and validates the request and publishes the event to Kafka 1.1 Persister consumes the event from Kafka and stores in the Events Store 1.2 The Transform Engine consumes the event from kafka, performs transform and aggregation operations on events, and publishes events that it creates back to Message Queue 1.3 Event Engine consumes compliant events from Kafka. It converts the event into stream a “YAML” 2.0 Streams are processed by the Stream Engine Winchester. If needed it publishes Metric Stack Distiller StackTach Winchester 1.3.0 add event 2.0.1 publish metric 1.2.0 consume raw event
  • 28. Monasca - API Keystone ● Metrics ● Transformations ● Alarms ● Notifications ● Streams ● Events Service Catalog provided by keystone http://my_monasca http://my_stacktach /metrics/ /transform/ /alarm-definitions/ or /alarms/ /notification-methods/ /streams/ /events/ Monasca API StackTach API Your API * Anomaly API Monasca client StackTach client Your client* Anomaly client
  • 29. Monasca-Demo "Back to the Future with Michael J. Fox as Marty McFly" by Source. Licensed under Fair use via Wikipedia - here
  • 30. 4. Conclusions “E quindi uscimmo a riveder le stelle..” [Inf. XXXIV ]
  • 31. OpenStack Bootcamp The main topics covered are: • Overview on OpenStack and its architecture, • OpenStack networking; • Swift; • Ceilometer and its architecture, • Heat Overview; • OpenStack deployment. At the end of the Bootcamp each student will be able to: • Describe the architecture of an OpenStack deployment; • Discuss the main functionalities of OpenStack; • Deploy, configure and use the Openstack services; • Create and manage VMs and Virtual Networks; • Create and manage, suers, roles, and quotas; • Use the OpenStack CLI and Dashboard. In partnership with Mirantis For further information: http://openstack.create-net.org; openstack@create-net.org
  • 32. Attilio Broglio Software architect @ Create-net abroglio@create-net.org Tanks for your attention!! Silvio Cretti Deputy Area Head @ Create-net scretti@create-net.org Webinar on November 26th, 2015 - 15:00 CET