SlideShare a Scribd company logo
1 of 41
Download to read offline
Rollout allyour Prometheus exporters withRollout allyour Prometheus exporters with
Puppet!Puppet!
(ProudlypoweredbyVoxPupuli Puppet modules)(ProudlypoweredbyVoxPupuli Puppet modules)
1 / 251 / 25
$ whoami
Tim 'bastelfreak' Meusel
Puppet Contributor since 2012
Merging stuff on Vox Pupuli (Puppet Community) since 2015
Vox Pupuli Project Management Committee member
2 / 25
Let us go on amonitoring journeyLet us go on amonitoring journey
3 / 253 / 25
Starting Point Assume you maintain a few thousand servers
@bastelsblog for @voxpupuliorg
4 / 25
Starting Point Assume you maintain a few thousand servers
Assume you have at least one coworker that develops software
@bastelsblog for @voxpupuliorg
4 / 25
Starting Point Assume you maintain a few thousand servers
Assume you have at least one coworker that develops software
You have to maintain that software in production
@bastelsblog for @voxpupuliorg
4 / 25
Starting Point Assume you maintain a few thousand servers
Assume you have at least one coworker that develops software
You have to maintain that software in production
All monitoring you have is really bad
It has false positives, it isn't efficient, it's complex
@bastelsblog for @voxpupuliorg
4 / 25
Starting Point Assume you maintain a few thousand servers
Assume you have at least one coworker that develops software
You have to maintain that software in production
All monitoring you have is really bad
It has false positives, it isn't efficient, it's complex
Or you have no monitoring at all
@bastelsblog for @voxpupuliorg
4 / 25
Chapter 1: ExplorationChapter 1: Exploration
Or:TheHappyPhaseOr:TheHappyPhase
5 / 255 / 25
Starting Point
Exploration
You attend your most favourite monitoring conference
@bastelsblog for @voxpupuliorg
6 / 25
Starting Point
Exploration
You attend your most favourite monitoring conference
Somebody recommends you node_exporter
"Just download the binary, run it as root and it works" they said...
@bastelsblog for @voxpupuliorg
6 / 25
Starting Point
Exploration
Prometheus Exporters:
Reads many metrics from your box, expose them via HTTP
No HTTPS, no authentication
@bastelsblog for @voxpupuliorg
7 / 25
Starting Point
Exploration
Prometheus Exporters:
Reads many metrics from your box, expose them via HTTP
No HTTPS, no authentication
Has many collectors, that can be enabled/disabled
@bastelsblog for @voxpupuliorg
7 / 25
Starting Point
Exploration
Prometheus Exporters:
Reads many metrics from your box, expose them via HTTP
No HTTPS, no authentication
Has many collectors, that can be enabled/disabled
Can read values from 3rd parties from a txt file
@bastelsblog for @voxpupuliorg
7 / 25
Starting Point
Exploration
Prometheus Exporters:
Reads many metrics from your box, expose them via HTTP
No HTTPS, no authentication
Has many collectors, that can be enabled/disabled
Can read values from 3rd parties from a txt file
Single binary, written in go
Nice for dependency management, but please consider building
packages
Do not download random binaries from the internet...
@bastelsblog for @voxpupuliorg
7 / 25
Starting Point
Exploration
Prometheus Exporters:
# HELP Total number of scrapes by HTTP status code.
# TYPE counter
promhttp_metric_handler_requests_total{code="200"} 5
promhttp_metric_handler_requests_total{code="500"} 0
promhttp_metric_handler_requests_total{code="503"} 0
Each metric has a name and a value
There should be a HELP
There should be a type
A metric can have labels (code="XXX" in this case)
@bastelsblog for @voxpupuliorg
8 / 25
Starting Point
Exploration
Tell your developers to expose data as prometheus metrics
@bastelsblog for @voxpupuliorg
9 / 25
Starting Point
Exploration
Tell your developers to expose data as prometheus metrics
Enrich your exporter with 3rd party data
@bastelsblog for @voxpupuliorg
9 / 25
Starting Point
Exploration
Tell your developers to expose data as prometheus metrics
Enrich your exporter with 3rd party data
Many applications already provide prometheus-style metrics
@bastelsblog for @voxpupuliorg
9 / 25
Starting Point
Exploration
Tell your developers to expose data as prometheus metrics
Enrich your exporter with 3rd party data
Many applications already provide prometheus-style metrics
There are hundreds of exporters available
@bastelsblog for @voxpupuliorg
9 / 25
Chapter 2: IntegrationChapter 2: Integration
Or:Millionways toshoot yourselfinthefootOr:Millionways toshoot yourselfinthefoot
10 / 2510 / 25
Starting Point
Exploration
Integration
With the puppet/prometheus module:
include prometheus::node_exporter
@bastelsblog for @voxpupuliorg
11 / 25
Starting Point
Exploration
Integration
Prometheus database scrapes all exporters
Everybody can make backups of your metrics o/
(Because they are available to the whole internet)
@bastelsblog for @voxpupuliorg
12 / 25
Starting Point
Exploration
Integration
Discovery
Prometheus database needs to know the targets
Register each exporter in Consul as a service
Feed services into Prometheus
Use KyleAnderson/consul Puppet module to deploy consul
@bastelsblog for @voxpupuliorg
13 / 25
Starting Point
Exploration
Integration
Discovery
@bastelsblog for @voxpupuliorg
14 / 25
Starting Point
Exploration
Integration
Discovery
Take a look at ./examples/node_exporter_consul.pp
@bastelsblog for @voxpupuliorg
15 / 25
Starting Point
Exploration
Integration
Discovery
Authentication
Puppet Agent/Server use TLS client certificates
Deploy nginx in front of node_exporter
Require a valid client certificate from prometheus database
Vox Pupuli provides puppet/nginx o/
@bastelsblog for @voxpupuliorg
16 / 25
Starting Point
Exploration
Integration
Discovery
Authentication
Take a look at ./examples/node_exporter_profile.pp
@bastelsblog for @voxpupuliorg
17 / 25
Starting Point
Exploration
Integration
Discovery
Authentication
Consul:
No authentication by default
Can also use TLS client certificates / a secret key
Puppet certificates can be reused
@bastelsblog for @voxpupuliorg
18 / 25
Starting Point
Exploration
Integration
Discovery
Authentication
Firewalling
Only Prometheus database should be able to access exporters
@bastelsblog for @voxpupuliorg
19 / 25
Starting Point
Exploration
Integration
Discovery
Authentication
Firewalling
Only Prometheus database should be able to access exporters
Firewalling should be automated
@bastelsblog for @voxpupuliorg
19 / 25
Starting Point
Exploration
Integration
Discovery
Authentication
Firewalling
Only Prometheus database should be able to access exporters
Firewalling should be automated
IP addresses might change often
@bastelsblog for @voxpupuliorg
19 / 25
Starting Point
Exploration
Integration
Discovery
Authentication
Firewalling
class profiles::prometheus {
@@ferm::rule{"prometheus2$trusted['certname']":
ensure => 'present',
chain => 'INPUT',
saddr => facts['networking']['ip6'],
dport => 9100,
proto => 'tcp',
policy => 'ACCEPT',
tag => 'prometheus2node_exporter',
}
}
class profiles::node_exporter {
Ferm::Rule <<| tag == 'prometheus2node_exporter' |>>
}
Exported resources to the rescue
Vox Pupuli provides puppet/ferm
@bastelsblog for @voxpupuliorg
20 / 25
Starting Point
Exploration
Integration
Discovery
Authentication
Firewalling
Consul:
Consul creates a meshed network
iptables doesn't scale with thousands of entries
filtering pakets and changing rules will be delayed
@bastelsblog for @voxpupuliorg
21 / 25
Starting Point
Exploration
Integration
Discovery
Authentication
Firewalling
ipsets and separate chains to the rescue!
handle consul traffic in a separate iptables chain
ip sets are a hashmap of CIDR ranges
In memory, scale very good
iptables can check against this hashmap
You cannot mix IPv4/IPv6 in one hashmap
Updating the ip set is independet from iptables rules
Vox Pupuli provides puppet/ipset
@bastelsblog for @voxpupuliorg
22 / 25
Starting Point
Exploration
Integration
Discovery
Authentication
Firewalling
Take a look at ./examples/ipsets.pp
@bastelsblog for @voxpupuliorg
23 / 25
Chapter 3: ConclusionChapter 3: Conclusion
Or:o/?Or:o/?
24 / 2524 / 25
Starting Point
Exploration
Integration
Conclusion
Rolling out an exporter with Puppet is easy
1 line of code! (for a dev environment)
Required config management code for a production setup is still
reasonable
@bastelsblog for @voxpupuliorg
25 / 25
Starting Point
Exploration
Integration
Conclusion
Rolling out an exporter with Puppet is easy
puppet/prometheus supports 20 famous exporters
You can easily add support for another one
Ping the Vox Pupuli people and ask for help
@bastelsblog for @voxpupuliorg
25 / 25
Starting Point
Exploration
Integration
Conclusion
Rolling out an exporter with Puppet is easy
puppet/prometheus supports 20 famous exporters
Consul as service discovery
+ Probably the solution that scales best
+ Since you now have it, you can use it for even more stuff
- More configuration effort than an actual exporter
@bastelsblog for @voxpupuliorg
25 / 25
Starting Point
Exploration
Integration
Conclusion
Rolling out an exporter with Puppet is easy
puppet/prometheus supports 20 famous exporters
Consul as service discovery
github.com/bastelfreak/osmc2019 repo with slides + all examples +
Vagrantfile to show your coworkers
Contact: tim@bastelfreak.de or bastelfreak on freenode
Collection of related talks
Thanks foryourattention!
@bastelsblog for @voxpupuliorg
25 / 25

More Related Content

Recently uploaded

Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataBradBedford3
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideChristina Lin
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationkaushalgiri8080
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfkalichargn70th171
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfjoe51371421
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEOrtus Solutions, Corp
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...soniya singh
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptkotipi9215
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackVICTOR MAESTRE RAMIREZ
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about usDynamic Netsoft
 

Recently uploaded (20)

Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanation
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
Exploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the ProcessExploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the Process
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdf
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
 
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.ppt
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStack
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about us
 

Featured

How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Applitools
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at WorkGetSmarter
 
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...DevGAMM Conference
 
Barbie - Brand Strategy Presentation
Barbie - Brand Strategy PresentationBarbie - Brand Strategy Presentation
Barbie - Brand Strategy PresentationErica Santiago
 
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them wellGood Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them wellSaba Software
 
Introduction to C Programming Language
Introduction to C Programming LanguageIntroduction to C Programming Language
Introduction to C Programming LanguageSimplilearn
 

Featured (20)

How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 
ChatGPT webinar slides
ChatGPT webinar slidesChatGPT webinar slides
ChatGPT webinar slides
 
More than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike RoutesMore than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike Routes
 
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
 
Barbie - Brand Strategy Presentation
Barbie - Brand Strategy PresentationBarbie - Brand Strategy Presentation
Barbie - Brand Strategy Presentation
 
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them wellGood Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
 
Introduction to C Programming Language
Introduction to C Programming LanguageIntroduction to C Programming Language
Introduction to C Programming Language
 

OSMC 2019 | Rollout all your Prometheus exporters with Puppet! by Tim Meusel