SlideShare una empresa de Scribd logo
1 de 37
www.networktocode.com Network to Code Confidential
How to Introduce Telemetry
Streaming (gNMI) in Your
Network with SNMP with
Telegraf
November 2020
www.networktocode.com Network to Code Confidential
Who is Network to Code?
/company/network-to-code/
@networktocode
• Founded in mid 2014
• Network Automation Solution Provider
– Next-gen consulting and integration company
– Focus on automation/programmability and reducing
operational inefficiencies
– Services only business model
• Vendor Independent
– Infrastructure (Cisco, Juniper, Arista, HP, Cumulus, F5
etc.)
– Open Source Tools (Ansible, Salt, Python, StackStorm,
Puppet, Terraform, Telegraf, InfluxDB, Prometheus,
Grafana, ElasticSearch, Kibana)
– IT Operations Software – ServiceNOW, Remedy, IBM
www.networktocode.com
www.networktocode.com Network to Code Confidential
About David & Josh
David
● Dublin, IE
● Sr Network Automation
Consultant, Network to Code
● Automating Networks since
2013
● Telegraf user since 2019
Josh
● Minnesota, US
● Network Automation
Engineer, Network to Code
● Automating Networks since
2015
● Telegraf user since 2018
@vanderaaj@davidban77 @jvanderaa@davidban77
www.networktocode.com Network to Code Confidential
Agenda
One of the best times to be gathering telemetry data from
network devices!
• Network Streaming Telemetry Stack
• gNMI
• Gathering of Data from Network Devices with Telegraf
• Enriching and Modifying metrics
• Demo
• Wrap Up & Tips and Tricks
www.networktocode.com Network to Code Confidential
Telemetry Stack
Collect
Enrichment
Store
Dashboard
Network Devices
www.networktocode.com Network to Code Confidential
gNMI - Streaming Telemetry
www.networktocode.com Network to Code Confidential
What is gNMI
• Model driven configuration and retrieval of
operational data over gRPC (Remote
Procedure Calls)
• Protocol Buffers
• Subscription model
www.networktocode.com Network to Code Confidential
gNMI Plugin Note
• Previously Cisco gNMI Telemetry
(cisco_telemetry_gnmi)
• Renamed to just gNMI in Telegraf 1.15
• https://github.com/influxdata/telegraf/tree/rel
ease-1.16/plugins/inputs/gnmi
www.networktocode.com Network to Code Confidential
Telegraf for Network Telemetry
www.networktocode.com Network to Code Confidential
What is Telegraf?
• Telegraf is a plugin-driven server agent for
collecting & reporting metrics written in Go
• Pulls metrics from system running on, 3rd
party APIs
• Output plugins to send to various data stores
www.networktocode.com Network to Code Confidential
Telegraf - gNMI
11
[[inputs.gnmi]]
addresses = ["device1"]
username = "<USERNAME>"
password = "<PASSWORD>"
[[inputs.gnmi.subscription]]
origin = "openconfig-interfaces"
path = "/interfaces/interface"
subscription_mode = "sample"
sample_interval = "60s"
Collect Interfaces/interface counters
Base config : Device + Credential
www.networktocode.com Network to Code Confidential
Want to monitor all of this, streaming telemetry
would be terrific
www.networktocode.com Network to Code Confidential
Several devices in your environment do not yet
support Streaming Telemetry!
www.networktocode.com Network to Code Confidential
Hybrid Collection
www.networktocode.com Network to Code Confidential
Telegraf - SNMP
15
[[inputs.snmp]]
agents = ["device1"]
version = 2
community = "<SNMP Community>"
interval = "60s"
timeout = "10s"
retries = 3
[[inputs.snmp.field]]
name = "hostname"
oid = "RFC1213-MIB::sysName.0"
is_tag = true
[[inputs.snmp.table]]
name = "interface"
inherit_tags = [ "hostname" ]
oid = "IF-MIB::ifXTable"
[[inputs.snmp.table.field]]
name = "name"
oid = "IF-MIB::ifDescr"
is_tag = true
Base config : Device, Credential, interval
Convert sysName.0 as tag hostname
Collect IF-MIB::ifXTable Table
Convert ifDescr as Tag name
www.networktocode.com Network to Code Confidential
Challenge with Multiple Input Plugins
16
snmp
gnmi
interface_counters,agent_host=router1,ifName=Ethernet7
ifOutOctets=3814i,ifInOctets=469i 160519
interface,source=192.0.2.10,name=Ethernet7 in_octets=2176i 1605192
interface,source=192.0.2.10,name=Ethernet7 out_octets=316i 1605192
Measurement Tag Set Field Set TimestampInflux Line Protocol:
www.networktocode.com Network to Code Confidential
Telegraf Pipeline
www.networktocode.com Network to Code Confidential
Telegraf Pipeline
snmp
Output Plugin
40+ availableprometheus_client
gnmi Execd
regex
Input Plugins
190+ available
Processors Plugins
25+ available
influxdb
rename
Collect
Data
Enrichment
Output
www.networktocode.com Network to Code Confidential
Data Enrichment
www.networktocode.com Network to Code Confidential
Data Normalization with Telegraf - single device
20
snmp
Output Plugin - Send to InfluxDB
Normalize Data
influxdb_v2
gnmi execd
regex
rename rename rename
Collect Data + Add device level Tags
Enrich Data (add interface role)
www.networktocode.com Network to Code Confidential
# Processor to rename the snmp fields
[[processors.rename]]
[[processors.rename.replace]]
field = "ifHCInOctets"
dest = "in_octets"
[[processors.rename.replace]]
field = "ifHCOutOctets"
dest = "out_octets"
[[processors.rename.replace]]
tag = "agent_host"
dest = "source"
Telegraf - Rename Data
21
Rename the field ifHCInOctets and ifHCOutOctets to match gNMI
Rename the tag agent_host to match gNMI
www.networktocode.com Network to Code Confidential
Telegraf - Add metadata
22
[[processors.regex]]
[processors.regex.tagpass]
host = device1
[[processors.regex.tags]]
key = "name"
pattern = "^ge-0/0/0$"
replacement = "management"
result_key = "interfacerole"
[[processors.regex.tags]]
key = "name"
pattern = "^ge-0/0/1$"
replacement = "data"
result_key = "interfacerole"
Apply these rules only for measurement with a tag host=device1
If a tag name=ge-0/0/0 is present, add a tag interfacerole=management
If a tag name=ge-0/0/1 is present, add a tag interfacerole=data
www.networktocode.com Network to Code Confidential
Demo Environment
www.networktocode.com Network to Code Confidential
Demo Environment
www.networktocode.com Network to Code Confidential
Recap
• Collect Data from devices
• Normalize the data
• Enrich the data
• Output the data
• Dashboard of the data
www.networktocode.com Network to Code Confidential
What’s Next & Tips and Tricks
www.networktocode.com Network to Code Confidential
What we are trying to do next?
• Flux language
• InfluxDB 2.0
• InfluxDB IOx
• Additional plugins - Input and Processor
• Starlark processor
www.networktocode.com Network to Code Confidential
Telegraf Tips & Tricks
• Automate configuration with templating - Ansible is a good choice
• Run in Docker
• Install SNMP MIB’s Locally
• Use files output for troubleshooting
• SNMP/gNMI won’t work? Look at writing your own executable
with the execd plugins
• Input Internal Plugin (about the Telegraf Plugin)
• Consider running on device natively
• Use the reachability plugins (Network Response, DNS)
• Look at the Plugin Documentation (search “Telegraf Plugins”)
www.networktocode.com Network to Code Confidential
Monitor Your Network With gNMI, SNMP, and Grafana
http://blog.networktocode.com/post/monitor_your_network_with_gnmi_snmp_and_grafana/
Network Telemetry for SNMP Devices
http://blog.networktocode.com/post/network_telemetry_for_snmp_devices/
Monitoring Websites with Telegraf and
Prometheus
https://blog.networktocode.com/post/monitoring_websites_with_telegraf_and_prometheus/
Network to Code Blog Content
www.networktocode.com Network to Code Confidential
Thank You!
/company/network-to-code/
@networktocode
www.networktocode.com
slack.networktocode.com
www.networktocode.com Network to Code Confidential
Appendix Items
www.networktocode.com Network to Code Confidential
[global_tags]
device_role = "spine"
[agent]
hostname = "telegraf-r1"
Telegraf-R1: Base Input Configuration
[[inputs.snmp]]
agents = ["r1"]
version = 2
community = "${SNMP_COMMUNITY}"
interval = "60s"
timeout = "10s"
retries = 3
[[inputs.snmp.table]]
name = "interface"
oid = "IF-MIB::ifXTable"
[[inputs.snmp.table.field]]
name = "name"
oid = "IF-MIB::ifDescr"
is_tag = true
Cont.
www.networktocode.com Network to Code Confidential
Telegraf -R1 Data Normalization and Enrichment
[[processors.rename]]
[[processors.rename.replace]]
field = "ifHCInOctets"
dest = "in_octets"
[[processors.rename.replace]]
field = "ifHCOutOctets"
dest = "out_octets"
[[processors.rename.replace]]
tag = "agent_host"
dest = "device"
[[processors.regex]]
namepass = ["interface"]
[[processors.regex.tags]]
key = "name"
pattern = "^GigaS+0$"
replacement = "management"
result_key = "intf_role"
[[processors.regex.tags]]
key = "name"
pattern = "^GigaS+0/1$"
replacement = "spine"
result_key = "intf_role"
[[processors.regex.tags]]
key = "name"
pattern = "^GigaS+0/2$"
replacement = "backbone"
result_key = "intf_role"
Cont.
www.networktocode.com Network to Code Confidential
Telegraf -R1 Output InfluxDB and STDOUT
[[outputs.influxdb]]
urls = ["http://influxdb:8086"]
[[outputs.file]]
files = ["stdout"]
data_format = "influx"
www.networktocode.com Network to Code Confidential
[global_tags]
device_role = "spine"
[agent]
hostname = "telegraf-r2"
Telegraf-R2: Base Input Configuration
Cont.
[[inputs.gnmi]]
addresses = ["r2:6030"]
username = "${GNMI_USER}"
password = "${GNMI_PASSWORD}"
redial = "10s"
[[inputs.gnmi.subscription]]
name = "interface"
origin = "openconfig-interfaces"
path = "/interfaces/interface/state/counters"
subscription_mode = "sample"
sample_interval = "5s"
www.networktocode.com Network to Code Confidential
Telegraf -R2 Data Normalization and Enrichment
Cont.
[[processors.rename]]
[[processors.rename.replace]]
tag = "source"
dest = "device"
[[processors.regex]]
namepass = ["interface"]
[[processors.regex.tags]]
key = "name"
pattern = "^Managementd+$"
replacement = "management"
result_key = "intf_role"
[[processors.regex.tags]]
key = "name"
pattern = "^Ethernet1$"
replacement = "spine"
result_key = "intf_role"
[[processors.regex.tags]]
key = "name"
pattern = "^Ethernet2$"
replacement = "backbone"
result_key = "intf_role"
www.networktocode.com Network to Code Confidential
Telegraf -R2 Output InfluxDB and STDOUT
[[outputs.influxdb]]
urls = ["http://influxdb:8086"]
[[outputs.file]]
files = ["stdout"]
data_format = "influx"

Más contenido relacionado

La actualidad más candente

Kernel Recipes 2017 - EBPF and XDP - Eric Leblond
Kernel Recipes 2017 - EBPF and XDP - Eric LeblondKernel Recipes 2017 - EBPF and XDP - Eric Leblond
Kernel Recipes 2017 - EBPF and XDP - Eric LeblondAnne Nicolas
 
High Availability Content Caching with NGINX
High Availability Content Caching with NGINXHigh Availability Content Caching with NGINX
High Availability Content Caching with NGINXNGINX, Inc.
 
Introduction to eBPF and XDP
Introduction to eBPF and XDPIntroduction to eBPF and XDP
Introduction to eBPF and XDPlcplcp1
 
Alexei Vladishev - Zabbix - Monitoring Solution for Everyone
Alexei Vladishev - Zabbix - Monitoring Solution for EveryoneAlexei Vladishev - Zabbix - Monitoring Solution for Everyone
Alexei Vladishev - Zabbix - Monitoring Solution for EveryoneZabbix
 
Automation with ansible
Automation with ansibleAutomation with ansible
Automation with ansibleKhizer Naeem
 
SNMP Demystified Part-I
SNMP Demystified Part-ISNMP Demystified Part-I
SNMP Demystified Part-IManageEngine
 
eBPF - Rethinking the Linux Kernel
eBPF - Rethinking the Linux KerneleBPF - Rethinking the Linux Kernel
eBPF - Rethinking the Linux KernelThomas Graf
 
SIP & TLS - Security in a peer to peer world
SIP & TLS - Security in a peer to peer worldSIP & TLS - Security in a peer to peer world
SIP & TLS - Security in a peer to peer worldOlle E Johansson
 
Ansible presentation
Ansible presentationAnsible presentation
Ansible presentationSuresh Kumar
 
SIPREC RTPEngine Media Forking
SIPREC RTPEngine Media ForkingSIPREC RTPEngine Media Forking
SIPREC RTPEngine Media ForkingHossein Yavari
 
Replacing iptables with eBPF in Kubernetes with Cilium
Replacing iptables with eBPF in Kubernetes with CiliumReplacing iptables with eBPF in Kubernetes with Cilium
Replacing iptables with eBPF in Kubernetes with CiliumMichal Rostecki
 
NGINX 101: Web Traffic Encryption with SSL/TLS and NGINX
NGINX 101: Web Traffic Encryption with SSL/TLS and NGINXNGINX 101: Web Traffic Encryption with SSL/TLS and NGINX
NGINX 101: Web Traffic Encryption with SSL/TLS and NGINXNGINX, Inc.
 
Introduction to the Container Network Interface (CNI)
Introduction to the Container Network Interface (CNI)Introduction to the Container Network Interface (CNI)
Introduction to the Container Network Interface (CNI)Weaveworks
 
Grafana optimization for Prometheus
Grafana optimization for PrometheusGrafana optimization for Prometheus
Grafana optimization for PrometheusMitsuhiro Tanda
 
[CNCF TAG-Runtime 2022-10-06] Lima
[CNCF TAG-Runtime 2022-10-06] Lima[CNCF TAG-Runtime 2022-10-06] Lima
[CNCF TAG-Runtime 2022-10-06] LimaAkihiro Suda
 
MySQL Monitoring using Prometheus & Grafana
MySQL Monitoring using Prometheus & GrafanaMySQL Monitoring using Prometheus & Grafana
MySQL Monitoring using Prometheus & GrafanaYoungHeon (Roy) Kim
 
High-Performance Networking Using eBPF, XDP, and io_uring
High-Performance Networking Using eBPF, XDP, and io_uringHigh-Performance Networking Using eBPF, XDP, and io_uring
High-Performance Networking Using eBPF, XDP, and io_uringScyllaDB
 

La actualidad más candente (20)

Kernel Recipes 2017 - EBPF and XDP - Eric Leblond
Kernel Recipes 2017 - EBPF and XDP - Eric LeblondKernel Recipes 2017 - EBPF and XDP - Eric Leblond
Kernel Recipes 2017 - EBPF and XDP - Eric Leblond
 
High Availability Content Caching with NGINX
High Availability Content Caching with NGINXHigh Availability Content Caching with NGINX
High Availability Content Caching with NGINX
 
Scale Kubernetes to support 50000 services
Scale Kubernetes to support 50000 servicesScale Kubernetes to support 50000 services
Scale Kubernetes to support 50000 services
 
Introduction to eBPF and XDP
Introduction to eBPF and XDPIntroduction to eBPF and XDP
Introduction to eBPF and XDP
 
Alexei Vladishev - Zabbix - Monitoring Solution for Everyone
Alexei Vladishev - Zabbix - Monitoring Solution for EveryoneAlexei Vladishev - Zabbix - Monitoring Solution for Everyone
Alexei Vladishev - Zabbix - Monitoring Solution for Everyone
 
Automation with ansible
Automation with ansibleAutomation with ansible
Automation with ansible
 
SNMP Demystified Part-I
SNMP Demystified Part-ISNMP Demystified Part-I
SNMP Demystified Part-I
 
eBPF - Rethinking the Linux Kernel
eBPF - Rethinking the Linux KerneleBPF - Rethinking the Linux Kernel
eBPF - Rethinking the Linux Kernel
 
イエラエセキュリティMeet up 20210820
イエラエセキュリティMeet up 20210820イエラエセキュリティMeet up 20210820
イエラエセキュリティMeet up 20210820
 
SIP & TLS - Security in a peer to peer world
SIP & TLS - Security in a peer to peer worldSIP & TLS - Security in a peer to peer world
SIP & TLS - Security in a peer to peer world
 
Ansible presentation
Ansible presentationAnsible presentation
Ansible presentation
 
SIPREC RTPEngine Media Forking
SIPREC RTPEngine Media ForkingSIPREC RTPEngine Media Forking
SIPREC RTPEngine Media Forking
 
Ansible
AnsibleAnsible
Ansible
 
Replacing iptables with eBPF in Kubernetes with Cilium
Replacing iptables with eBPF in Kubernetes with CiliumReplacing iptables with eBPF in Kubernetes with Cilium
Replacing iptables with eBPF in Kubernetes with Cilium
 
NGINX 101: Web Traffic Encryption with SSL/TLS and NGINX
NGINX 101: Web Traffic Encryption with SSL/TLS and NGINXNGINX 101: Web Traffic Encryption with SSL/TLS and NGINX
NGINX 101: Web Traffic Encryption with SSL/TLS and NGINX
 
Introduction to the Container Network Interface (CNI)
Introduction to the Container Network Interface (CNI)Introduction to the Container Network Interface (CNI)
Introduction to the Container Network Interface (CNI)
 
Grafana optimization for Prometheus
Grafana optimization for PrometheusGrafana optimization for Prometheus
Grafana optimization for Prometheus
 
[CNCF TAG-Runtime 2022-10-06] Lima
[CNCF TAG-Runtime 2022-10-06] Lima[CNCF TAG-Runtime 2022-10-06] Lima
[CNCF TAG-Runtime 2022-10-06] Lima
 
MySQL Monitoring using Prometheus & Grafana
MySQL Monitoring using Prometheus & GrafanaMySQL Monitoring using Prometheus & Grafana
MySQL Monitoring using Prometheus & Grafana
 
High-Performance Networking Using eBPF, XDP, and io_uring
High-Performance Networking Using eBPF, XDP, and io_uringHigh-Performance Networking Using eBPF, XDP, and io_uring
High-Performance Networking Using eBPF, XDP, and io_uring
 

Similar a Stream Telemetry with Telegraf, gNMI and SNMP

26.1.7 lab snort and firewall rules
26.1.7 lab   snort and firewall rules26.1.7 lab   snort and firewall rules
26.1.7 lab snort and firewall rulesFreddy Buenaño
 
Monitoring as Code: Getting to Monitoring-Driven Development - DEV314 - re:In...
Monitoring as Code: Getting to Monitoring-Driven Development - DEV314 - re:In...Monitoring as Code: Getting to Monitoring-Driven Development - DEV314 - re:In...
Monitoring as Code: Getting to Monitoring-Driven Development - DEV314 - re:In...Amazon Web Services
 
Leveraging the strength of OSGi to deliver a convergent IoT Ecosystem - O Log...
Leveraging the strength of OSGi to deliver a convergent IoT Ecosystem - O Log...Leveraging the strength of OSGi to deliver a convergent IoT Ecosystem - O Log...
Leveraging the strength of OSGi to deliver a convergent IoT Ecosystem - O Log...mfrancis
 
Managing Large-scale Networks with Trigger
Managing Large-scale Networks with TriggerManaging Large-scale Networks with Trigger
Managing Large-scale Networks with Triggerjathanism
 
CENTRAL MANAGEMENT OF NETWORK AND CALL SERVICES
CENTRAL MANAGEMENT OF NETWORK AND CALL SERVICESCENTRAL MANAGEMENT OF NETWORK AND CALL SERVICES
CENTRAL MANAGEMENT OF NETWORK AND CALL SERVICESNazmul Hossain Rakib
 
Getting Started: Intro to Telegraf - July 2021
Getting Started: Intro to Telegraf - July 2021Getting Started: Intro to Telegraf - July 2021
Getting Started: Intro to Telegraf - July 2021InfluxData
 
Exploring the Final Frontier of Data Center Orchestration: Network Elements -...
Exploring the Final Frontier of Data Center Orchestration: Network Elements -...Exploring the Final Frontier of Data Center Orchestration: Network Elements -...
Exploring the Final Frontier of Data Center Orchestration: Network Elements -...Puppet
 
Internet of things the salesforce lego machine cloud
Internet of things   the salesforce lego machine cloudInternet of things   the salesforce lego machine cloud
Internet of things the salesforce lego machine cloudandyinthecloud
 
5G Multi-Access Edge Compute
5G Multi-Access Edge Compute5G Multi-Access Edge Compute
5G Multi-Access Edge ComputeMichelle Holley
 
Hunting for APT in network logs workshop presentation
Hunting for APT in network logs workshop presentationHunting for APT in network logs workshop presentation
Hunting for APT in network logs workshop presentationOlehLevytskyi1
 
Samantha Wang [InfluxData] | Data Collection Overview | InfluxDays 2022
Samantha Wang [InfluxData] | Data Collection Overview | InfluxDays 2022Samantha Wang [InfluxData] | Data Collection Overview | InfluxDays 2022
Samantha Wang [InfluxData] | Data Collection Overview | InfluxDays 2022InfluxData
 
New Design Patterns in Microservice Solutions
New Design Patterns in Microservice SolutionsNew Design Patterns in Microservice Solutions
New Design Patterns in Microservice SolutionsMichel Burger
 
Applciation footprinting, discovery and enumeration
Applciation footprinting, discovery and enumerationApplciation footprinting, discovery and enumeration
Applciation footprinting, discovery and enumerationBlueinfy Solutions
 
How to Build a Telegraf Plugin by Noah Crowley
How to Build a Telegraf Plugin by Noah CrowleyHow to Build a Telegraf Plugin by Noah Crowley
How to Build a Telegraf Plugin by Noah CrowleyInfluxData
 
Building a Telegraf Plugin by Noah Crowly | Developer Advocate | InfluxData
Building a Telegraf Plugin by Noah Crowly | Developer Advocate | InfluxDataBuilding a Telegraf Plugin by Noah Crowly | Developer Advocate | InfluxData
Building a Telegraf Plugin by Noah Crowly | Developer Advocate | InfluxDataInfluxData
 
How to Use Telegraf and Its Plugin Ecosystem
How to Use Telegraf and Its Plugin EcosystemHow to Use Telegraf and Its Plugin Ecosystem
How to Use Telegraf and Its Plugin EcosystemInfluxData
 
Cisco Automation with Puppet and onePK - PuppetConf 2013
Cisco Automation with Puppet and onePK - PuppetConf 2013Cisco Automation with Puppet and onePK - PuppetConf 2013
Cisco Automation with Puppet and onePK - PuppetConf 2013Puppet
 
P4 Introduction
P4 Introduction P4 Introduction
P4 Introduction Netronome
 
IThome DevOps Summit - IoT、docker與DevOps
IThome DevOps Summit - IoT、docker與DevOpsIThome DevOps Summit - IoT、docker與DevOps
IThome DevOps Summit - IoT、docker與DevOpsSimon Su
 

Similar a Stream Telemetry with Telegraf, gNMI and SNMP (20)

26.1.7 lab snort and firewall rules
26.1.7 lab   snort and firewall rules26.1.7 lab   snort and firewall rules
26.1.7 lab snort and firewall rules
 
Monitoring as Code: Getting to Monitoring-Driven Development - DEV314 - re:In...
Monitoring as Code: Getting to Monitoring-Driven Development - DEV314 - re:In...Monitoring as Code: Getting to Monitoring-Driven Development - DEV314 - re:In...
Monitoring as Code: Getting to Monitoring-Driven Development - DEV314 - re:In...
 
Leveraging the strength of OSGi to deliver a convergent IoT Ecosystem - O Log...
Leveraging the strength of OSGi to deliver a convergent IoT Ecosystem - O Log...Leveraging the strength of OSGi to deliver a convergent IoT Ecosystem - O Log...
Leveraging the strength of OSGi to deliver a convergent IoT Ecosystem - O Log...
 
Managing Large-scale Networks with Trigger
Managing Large-scale Networks with TriggerManaging Large-scale Networks with Trigger
Managing Large-scale Networks with Trigger
 
CENTRAL MANAGEMENT OF NETWORK AND CALL SERVICES
CENTRAL MANAGEMENT OF NETWORK AND CALL SERVICESCENTRAL MANAGEMENT OF NETWORK AND CALL SERVICES
CENTRAL MANAGEMENT OF NETWORK AND CALL SERVICES
 
Getting Started: Intro to Telegraf - July 2021
Getting Started: Intro to Telegraf - July 2021Getting Started: Intro to Telegraf - July 2021
Getting Started: Intro to Telegraf - July 2021
 
Exploring the Final Frontier of Data Center Orchestration: Network Elements -...
Exploring the Final Frontier of Data Center Orchestration: Network Elements -...Exploring the Final Frontier of Data Center Orchestration: Network Elements -...
Exploring the Final Frontier of Data Center Orchestration: Network Elements -...
 
Internet of things the salesforce lego machine cloud
Internet of things   the salesforce lego machine cloudInternet of things   the salesforce lego machine cloud
Internet of things the salesforce lego machine cloud
 
5G Multi-Access Edge Compute
5G Multi-Access Edge Compute5G Multi-Access Edge Compute
5G Multi-Access Edge Compute
 
Hunting for APT in network logs workshop presentation
Hunting for APT in network logs workshop presentationHunting for APT in network logs workshop presentation
Hunting for APT in network logs workshop presentation
 
Samantha Wang [InfluxData] | Data Collection Overview | InfluxDays 2022
Samantha Wang [InfluxData] | Data Collection Overview | InfluxDays 2022Samantha Wang [InfluxData] | Data Collection Overview | InfluxDays 2022
Samantha Wang [InfluxData] | Data Collection Overview | InfluxDays 2022
 
New Design Patterns in Microservice Solutions
New Design Patterns in Microservice SolutionsNew Design Patterns in Microservice Solutions
New Design Patterns in Microservice Solutions
 
Applciation footprinting, discovery and enumeration
Applciation footprinting, discovery and enumerationApplciation footprinting, discovery and enumeration
Applciation footprinting, discovery and enumeration
 
How to Build a Telegraf Plugin by Noah Crowley
How to Build a Telegraf Plugin by Noah CrowleyHow to Build a Telegraf Plugin by Noah Crowley
How to Build a Telegraf Plugin by Noah Crowley
 
Building a Telegraf Plugin by Noah Crowly | Developer Advocate | InfluxData
Building a Telegraf Plugin by Noah Crowly | Developer Advocate | InfluxDataBuilding a Telegraf Plugin by Noah Crowly | Developer Advocate | InfluxData
Building a Telegraf Plugin by Noah Crowly | Developer Advocate | InfluxData
 
How to Use Telegraf and Its Plugin Ecosystem
How to Use Telegraf and Its Plugin EcosystemHow to Use Telegraf and Its Plugin Ecosystem
How to Use Telegraf and Its Plugin Ecosystem
 
Cisco Automation with Puppet and onePK - PuppetConf 2013
Cisco Automation with Puppet and onePK - PuppetConf 2013Cisco Automation with Puppet and onePK - PuppetConf 2013
Cisco Automation with Puppet and onePK - PuppetConf 2013
 
PRTG
PRTGPRTG
PRTG
 
P4 Introduction
P4 Introduction P4 Introduction
P4 Introduction
 
IThome DevOps Summit - IoT、docker與DevOps
IThome DevOps Summit - IoT、docker與DevOpsIThome DevOps Summit - IoT、docker與DevOps
IThome DevOps Summit - IoT、docker與DevOps
 

Más de InfluxData

Announcing InfluxDB Clustered
Announcing InfluxDB ClusteredAnnouncing InfluxDB Clustered
Announcing InfluxDB ClusteredInfluxData
 
Best Practices for Leveraging the Apache Arrow Ecosystem
Best Practices for Leveraging the Apache Arrow EcosystemBest Practices for Leveraging the Apache Arrow Ecosystem
Best Practices for Leveraging the Apache Arrow EcosystemInfluxData
 
How Bevi Uses InfluxDB and Grafana to Improve Predictive Maintenance and Redu...
How Bevi Uses InfluxDB and Grafana to Improve Predictive Maintenance and Redu...How Bevi Uses InfluxDB and Grafana to Improve Predictive Maintenance and Redu...
How Bevi Uses InfluxDB and Grafana to Improve Predictive Maintenance and Redu...InfluxData
 
Power Your Predictive Analytics with InfluxDB
Power Your Predictive Analytics with InfluxDBPower Your Predictive Analytics with InfluxDB
Power Your Predictive Analytics with InfluxDBInfluxData
 
How Teréga Replaces Legacy Data Historians with InfluxDB, AWS and IO-Base
How Teréga Replaces Legacy Data Historians with InfluxDB, AWS and IO-Base How Teréga Replaces Legacy Data Historians with InfluxDB, AWS and IO-Base
How Teréga Replaces Legacy Data Historians with InfluxDB, AWS and IO-Base InfluxData
 
Build an Edge-to-Cloud Solution with the MING Stack
Build an Edge-to-Cloud Solution with the MING StackBuild an Edge-to-Cloud Solution with the MING Stack
Build an Edge-to-Cloud Solution with the MING StackInfluxData
 
Meet the Founders: An Open Discussion About Rewriting Using Rust
Meet the Founders: An Open Discussion About Rewriting Using RustMeet the Founders: An Open Discussion About Rewriting Using Rust
Meet the Founders: An Open Discussion About Rewriting Using RustInfluxData
 
Introducing InfluxDB Cloud Dedicated
Introducing InfluxDB Cloud DedicatedIntroducing InfluxDB Cloud Dedicated
Introducing InfluxDB Cloud DedicatedInfluxData
 
Gain Better Observability with OpenTelemetry and InfluxDB
Gain Better Observability with OpenTelemetry and InfluxDB Gain Better Observability with OpenTelemetry and InfluxDB
Gain Better Observability with OpenTelemetry and InfluxDB InfluxData
 
How a Heat Treating Plant Ensures Tight Process Control and Exceptional Quali...
How a Heat Treating Plant Ensures Tight Process Control and Exceptional Quali...How a Heat Treating Plant Ensures Tight Process Control and Exceptional Quali...
How a Heat Treating Plant Ensures Tight Process Control and Exceptional Quali...InfluxData
 
How Delft University's Engineering Students Make Their EV Formula-Style Race ...
How Delft University's Engineering Students Make Their EV Formula-Style Race ...How Delft University's Engineering Students Make Their EV Formula-Style Race ...
How Delft University's Engineering Students Make Their EV Formula-Style Race ...InfluxData
 
Introducing InfluxDB’s New Time Series Database Storage Engine
Introducing InfluxDB’s New Time Series Database Storage EngineIntroducing InfluxDB’s New Time Series Database Storage Engine
Introducing InfluxDB’s New Time Series Database Storage EngineInfluxData
 
Start Automating InfluxDB Deployments at the Edge with balena
Start Automating InfluxDB Deployments at the Edge with balena Start Automating InfluxDB Deployments at the Edge with balena
Start Automating InfluxDB Deployments at the Edge with balena InfluxData
 
Understanding InfluxDB’s New Storage Engine
Understanding InfluxDB’s New Storage EngineUnderstanding InfluxDB’s New Storage Engine
Understanding InfluxDB’s New Storage EngineInfluxData
 
Streamline and Scale Out Data Pipelines with Kubernetes, Telegraf, and InfluxDB
Streamline and Scale Out Data Pipelines with Kubernetes, Telegraf, and InfluxDBStreamline and Scale Out Data Pipelines with Kubernetes, Telegraf, and InfluxDB
Streamline and Scale Out Data Pipelines with Kubernetes, Telegraf, and InfluxDBInfluxData
 
Ward Bowman [PTC] | ThingWorx Long-Term Data Storage with InfluxDB | InfluxDa...
Ward Bowman [PTC] | ThingWorx Long-Term Data Storage with InfluxDB | InfluxDa...Ward Bowman [PTC] | ThingWorx Long-Term Data Storage with InfluxDB | InfluxDa...
Ward Bowman [PTC] | ThingWorx Long-Term Data Storage with InfluxDB | InfluxDa...InfluxData
 
Scott Anderson [InfluxData] | New & Upcoming Flux Features | InfluxDays 2022
Scott Anderson [InfluxData] | New & Upcoming Flux Features | InfluxDays 2022Scott Anderson [InfluxData] | New & Upcoming Flux Features | InfluxDays 2022
Scott Anderson [InfluxData] | New & Upcoming Flux Features | InfluxDays 2022InfluxData
 
Steinkamp, Clifford [InfluxData] | Closing Thoughts | InfluxDays 2022
Steinkamp, Clifford [InfluxData] | Closing Thoughts | InfluxDays 2022Steinkamp, Clifford [InfluxData] | Closing Thoughts | InfluxDays 2022
Steinkamp, Clifford [InfluxData] | Closing Thoughts | InfluxDays 2022InfluxData
 
Steinkamp, Clifford [InfluxData] | Welcome to InfluxDays 2022 - Day 2 | Influ...
Steinkamp, Clifford [InfluxData] | Welcome to InfluxDays 2022 - Day 2 | Influ...Steinkamp, Clifford [InfluxData] | Welcome to InfluxDays 2022 - Day 2 | Influ...
Steinkamp, Clifford [InfluxData] | Welcome to InfluxDays 2022 - Day 2 | Influ...InfluxData
 
Steinkamp, Clifford [InfluxData] | Closing Thoughts Day 1 | InfluxDays 2022
Steinkamp, Clifford [InfluxData] | Closing Thoughts Day 1 | InfluxDays 2022Steinkamp, Clifford [InfluxData] | Closing Thoughts Day 1 | InfluxDays 2022
Steinkamp, Clifford [InfluxData] | Closing Thoughts Day 1 | InfluxDays 2022InfluxData
 

Más de InfluxData (20)

Announcing InfluxDB Clustered
Announcing InfluxDB ClusteredAnnouncing InfluxDB Clustered
Announcing InfluxDB Clustered
 
Best Practices for Leveraging the Apache Arrow Ecosystem
Best Practices for Leveraging the Apache Arrow EcosystemBest Practices for Leveraging the Apache Arrow Ecosystem
Best Practices for Leveraging the Apache Arrow Ecosystem
 
How Bevi Uses InfluxDB and Grafana to Improve Predictive Maintenance and Redu...
How Bevi Uses InfluxDB and Grafana to Improve Predictive Maintenance and Redu...How Bevi Uses InfluxDB and Grafana to Improve Predictive Maintenance and Redu...
How Bevi Uses InfluxDB and Grafana to Improve Predictive Maintenance and Redu...
 
Power Your Predictive Analytics with InfluxDB
Power Your Predictive Analytics with InfluxDBPower Your Predictive Analytics with InfluxDB
Power Your Predictive Analytics with InfluxDB
 
How Teréga Replaces Legacy Data Historians with InfluxDB, AWS and IO-Base
How Teréga Replaces Legacy Data Historians with InfluxDB, AWS and IO-Base How Teréga Replaces Legacy Data Historians with InfluxDB, AWS and IO-Base
How Teréga Replaces Legacy Data Historians with InfluxDB, AWS and IO-Base
 
Build an Edge-to-Cloud Solution with the MING Stack
Build an Edge-to-Cloud Solution with the MING StackBuild an Edge-to-Cloud Solution with the MING Stack
Build an Edge-to-Cloud Solution with the MING Stack
 
Meet the Founders: An Open Discussion About Rewriting Using Rust
Meet the Founders: An Open Discussion About Rewriting Using RustMeet the Founders: An Open Discussion About Rewriting Using Rust
Meet the Founders: An Open Discussion About Rewriting Using Rust
 
Introducing InfluxDB Cloud Dedicated
Introducing InfluxDB Cloud DedicatedIntroducing InfluxDB Cloud Dedicated
Introducing InfluxDB Cloud Dedicated
 
Gain Better Observability with OpenTelemetry and InfluxDB
Gain Better Observability with OpenTelemetry and InfluxDB Gain Better Observability with OpenTelemetry and InfluxDB
Gain Better Observability with OpenTelemetry and InfluxDB
 
How a Heat Treating Plant Ensures Tight Process Control and Exceptional Quali...
How a Heat Treating Plant Ensures Tight Process Control and Exceptional Quali...How a Heat Treating Plant Ensures Tight Process Control and Exceptional Quali...
How a Heat Treating Plant Ensures Tight Process Control and Exceptional Quali...
 
How Delft University's Engineering Students Make Their EV Formula-Style Race ...
How Delft University's Engineering Students Make Their EV Formula-Style Race ...How Delft University's Engineering Students Make Their EV Formula-Style Race ...
How Delft University's Engineering Students Make Their EV Formula-Style Race ...
 
Introducing InfluxDB’s New Time Series Database Storage Engine
Introducing InfluxDB’s New Time Series Database Storage EngineIntroducing InfluxDB’s New Time Series Database Storage Engine
Introducing InfluxDB’s New Time Series Database Storage Engine
 
Start Automating InfluxDB Deployments at the Edge with balena
Start Automating InfluxDB Deployments at the Edge with balena Start Automating InfluxDB Deployments at the Edge with balena
Start Automating InfluxDB Deployments at the Edge with balena
 
Understanding InfluxDB’s New Storage Engine
Understanding InfluxDB’s New Storage EngineUnderstanding InfluxDB’s New Storage Engine
Understanding InfluxDB’s New Storage Engine
 
Streamline and Scale Out Data Pipelines with Kubernetes, Telegraf, and InfluxDB
Streamline and Scale Out Data Pipelines with Kubernetes, Telegraf, and InfluxDBStreamline and Scale Out Data Pipelines with Kubernetes, Telegraf, and InfluxDB
Streamline and Scale Out Data Pipelines with Kubernetes, Telegraf, and InfluxDB
 
Ward Bowman [PTC] | ThingWorx Long-Term Data Storage with InfluxDB | InfluxDa...
Ward Bowman [PTC] | ThingWorx Long-Term Data Storage with InfluxDB | InfluxDa...Ward Bowman [PTC] | ThingWorx Long-Term Data Storage with InfluxDB | InfluxDa...
Ward Bowman [PTC] | ThingWorx Long-Term Data Storage with InfluxDB | InfluxDa...
 
Scott Anderson [InfluxData] | New & Upcoming Flux Features | InfluxDays 2022
Scott Anderson [InfluxData] | New & Upcoming Flux Features | InfluxDays 2022Scott Anderson [InfluxData] | New & Upcoming Flux Features | InfluxDays 2022
Scott Anderson [InfluxData] | New & Upcoming Flux Features | InfluxDays 2022
 
Steinkamp, Clifford [InfluxData] | Closing Thoughts | InfluxDays 2022
Steinkamp, Clifford [InfluxData] | Closing Thoughts | InfluxDays 2022Steinkamp, Clifford [InfluxData] | Closing Thoughts | InfluxDays 2022
Steinkamp, Clifford [InfluxData] | Closing Thoughts | InfluxDays 2022
 
Steinkamp, Clifford [InfluxData] | Welcome to InfluxDays 2022 - Day 2 | Influ...
Steinkamp, Clifford [InfluxData] | Welcome to InfluxDays 2022 - Day 2 | Influ...Steinkamp, Clifford [InfluxData] | Welcome to InfluxDays 2022 - Day 2 | Influ...
Steinkamp, Clifford [InfluxData] | Welcome to InfluxDays 2022 - Day 2 | Influ...
 
Steinkamp, Clifford [InfluxData] | Closing Thoughts Day 1 | InfluxDays 2022
Steinkamp, Clifford [InfluxData] | Closing Thoughts Day 1 | InfluxDays 2022Steinkamp, Clifford [InfluxData] | Closing Thoughts Day 1 | InfluxDays 2022
Steinkamp, Clifford [InfluxData] | Closing Thoughts Day 1 | InfluxDays 2022
 

Último

Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
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
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
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
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGSujit Pal
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
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
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 

Último (20)

Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
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
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
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
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAG
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 

Stream Telemetry with Telegraf, gNMI and SNMP

  • 1. www.networktocode.com Network to Code Confidential How to Introduce Telemetry Streaming (gNMI) in Your Network with SNMP with Telegraf November 2020
  • 2. www.networktocode.com Network to Code Confidential Who is Network to Code? /company/network-to-code/ @networktocode • Founded in mid 2014 • Network Automation Solution Provider – Next-gen consulting and integration company – Focus on automation/programmability and reducing operational inefficiencies – Services only business model • Vendor Independent – Infrastructure (Cisco, Juniper, Arista, HP, Cumulus, F5 etc.) – Open Source Tools (Ansible, Salt, Python, StackStorm, Puppet, Terraform, Telegraf, InfluxDB, Prometheus, Grafana, ElasticSearch, Kibana) – IT Operations Software – ServiceNOW, Remedy, IBM www.networktocode.com
  • 3. www.networktocode.com Network to Code Confidential About David & Josh David ● Dublin, IE ● Sr Network Automation Consultant, Network to Code ● Automating Networks since 2013 ● Telegraf user since 2019 Josh ● Minnesota, US ● Network Automation Engineer, Network to Code ● Automating Networks since 2015 ● Telegraf user since 2018 @vanderaaj@davidban77 @jvanderaa@davidban77
  • 4. www.networktocode.com Network to Code Confidential Agenda One of the best times to be gathering telemetry data from network devices! • Network Streaming Telemetry Stack • gNMI • Gathering of Data from Network Devices with Telegraf • Enriching and Modifying metrics • Demo • Wrap Up & Tips and Tricks
  • 5. www.networktocode.com Network to Code Confidential Telemetry Stack Collect Enrichment Store Dashboard Network Devices
  • 6. www.networktocode.com Network to Code Confidential gNMI - Streaming Telemetry
  • 7. www.networktocode.com Network to Code Confidential What is gNMI • Model driven configuration and retrieval of operational data over gRPC (Remote Procedure Calls) • Protocol Buffers • Subscription model
  • 8. www.networktocode.com Network to Code Confidential gNMI Plugin Note • Previously Cisco gNMI Telemetry (cisco_telemetry_gnmi) • Renamed to just gNMI in Telegraf 1.15 • https://github.com/influxdata/telegraf/tree/rel ease-1.16/plugins/inputs/gnmi
  • 9. www.networktocode.com Network to Code Confidential Telegraf for Network Telemetry
  • 10. www.networktocode.com Network to Code Confidential What is Telegraf? • Telegraf is a plugin-driven server agent for collecting & reporting metrics written in Go • Pulls metrics from system running on, 3rd party APIs • Output plugins to send to various data stores
  • 11. www.networktocode.com Network to Code Confidential Telegraf - gNMI 11 [[inputs.gnmi]] addresses = ["device1"] username = "<USERNAME>" password = "<PASSWORD>" [[inputs.gnmi.subscription]] origin = "openconfig-interfaces" path = "/interfaces/interface" subscription_mode = "sample" sample_interval = "60s" Collect Interfaces/interface counters Base config : Device + Credential
  • 12. www.networktocode.com Network to Code Confidential Want to monitor all of this, streaming telemetry would be terrific
  • 13. www.networktocode.com Network to Code Confidential Several devices in your environment do not yet support Streaming Telemetry!
  • 14. www.networktocode.com Network to Code Confidential Hybrid Collection
  • 15. www.networktocode.com Network to Code Confidential Telegraf - SNMP 15 [[inputs.snmp]] agents = ["device1"] version = 2 community = "<SNMP Community>" interval = "60s" timeout = "10s" retries = 3 [[inputs.snmp.field]] name = "hostname" oid = "RFC1213-MIB::sysName.0" is_tag = true [[inputs.snmp.table]] name = "interface" inherit_tags = [ "hostname" ] oid = "IF-MIB::ifXTable" [[inputs.snmp.table.field]] name = "name" oid = "IF-MIB::ifDescr" is_tag = true Base config : Device, Credential, interval Convert sysName.0 as tag hostname Collect IF-MIB::ifXTable Table Convert ifDescr as Tag name
  • 16. www.networktocode.com Network to Code Confidential Challenge with Multiple Input Plugins 16 snmp gnmi interface_counters,agent_host=router1,ifName=Ethernet7 ifOutOctets=3814i,ifInOctets=469i 160519 interface,source=192.0.2.10,name=Ethernet7 in_octets=2176i 1605192 interface,source=192.0.2.10,name=Ethernet7 out_octets=316i 1605192 Measurement Tag Set Field Set TimestampInflux Line Protocol:
  • 17. www.networktocode.com Network to Code Confidential Telegraf Pipeline
  • 18. www.networktocode.com Network to Code Confidential Telegraf Pipeline snmp Output Plugin 40+ availableprometheus_client gnmi Execd regex Input Plugins 190+ available Processors Plugins 25+ available influxdb rename Collect Data Enrichment Output
  • 19. www.networktocode.com Network to Code Confidential Data Enrichment
  • 20. www.networktocode.com Network to Code Confidential Data Normalization with Telegraf - single device 20 snmp Output Plugin - Send to InfluxDB Normalize Data influxdb_v2 gnmi execd regex rename rename rename Collect Data + Add device level Tags Enrich Data (add interface role)
  • 21. www.networktocode.com Network to Code Confidential # Processor to rename the snmp fields [[processors.rename]] [[processors.rename.replace]] field = "ifHCInOctets" dest = "in_octets" [[processors.rename.replace]] field = "ifHCOutOctets" dest = "out_octets" [[processors.rename.replace]] tag = "agent_host" dest = "source" Telegraf - Rename Data 21 Rename the field ifHCInOctets and ifHCOutOctets to match gNMI Rename the tag agent_host to match gNMI
  • 22. www.networktocode.com Network to Code Confidential Telegraf - Add metadata 22 [[processors.regex]] [processors.regex.tagpass] host = device1 [[processors.regex.tags]] key = "name" pattern = "^ge-0/0/0$" replacement = "management" result_key = "interfacerole" [[processors.regex.tags]] key = "name" pattern = "^ge-0/0/1$" replacement = "data" result_key = "interfacerole" Apply these rules only for measurement with a tag host=device1 If a tag name=ge-0/0/0 is present, add a tag interfacerole=management If a tag name=ge-0/0/1 is present, add a tag interfacerole=data
  • 23. www.networktocode.com Network to Code Confidential Demo Environment
  • 24. www.networktocode.com Network to Code Confidential Demo Environment
  • 25. www.networktocode.com Network to Code Confidential Recap • Collect Data from devices • Normalize the data • Enrich the data • Output the data • Dashboard of the data
  • 26. www.networktocode.com Network to Code Confidential What’s Next & Tips and Tricks
  • 27. www.networktocode.com Network to Code Confidential What we are trying to do next? • Flux language • InfluxDB 2.0 • InfluxDB IOx • Additional plugins - Input and Processor • Starlark processor
  • 28. www.networktocode.com Network to Code Confidential Telegraf Tips & Tricks • Automate configuration with templating - Ansible is a good choice • Run in Docker • Install SNMP MIB’s Locally • Use files output for troubleshooting • SNMP/gNMI won’t work? Look at writing your own executable with the execd plugins • Input Internal Plugin (about the Telegraf Plugin) • Consider running on device natively • Use the reachability plugins (Network Response, DNS) • Look at the Plugin Documentation (search “Telegraf Plugins”)
  • 29. www.networktocode.com Network to Code Confidential Monitor Your Network With gNMI, SNMP, and Grafana http://blog.networktocode.com/post/monitor_your_network_with_gnmi_snmp_and_grafana/ Network Telemetry for SNMP Devices http://blog.networktocode.com/post/network_telemetry_for_snmp_devices/ Monitoring Websites with Telegraf and Prometheus https://blog.networktocode.com/post/monitoring_websites_with_telegraf_and_prometheus/ Network to Code Blog Content
  • 30. www.networktocode.com Network to Code Confidential Thank You! /company/network-to-code/ @networktocode www.networktocode.com slack.networktocode.com
  • 31. www.networktocode.com Network to Code Confidential Appendix Items
  • 32. www.networktocode.com Network to Code Confidential [global_tags] device_role = "spine" [agent] hostname = "telegraf-r1" Telegraf-R1: Base Input Configuration [[inputs.snmp]] agents = ["r1"] version = 2 community = "${SNMP_COMMUNITY}" interval = "60s" timeout = "10s" retries = 3 [[inputs.snmp.table]] name = "interface" oid = "IF-MIB::ifXTable" [[inputs.snmp.table.field]] name = "name" oid = "IF-MIB::ifDescr" is_tag = true Cont.
  • 33. www.networktocode.com Network to Code Confidential Telegraf -R1 Data Normalization and Enrichment [[processors.rename]] [[processors.rename.replace]] field = "ifHCInOctets" dest = "in_octets" [[processors.rename.replace]] field = "ifHCOutOctets" dest = "out_octets" [[processors.rename.replace]] tag = "agent_host" dest = "device" [[processors.regex]] namepass = ["interface"] [[processors.regex.tags]] key = "name" pattern = "^GigaS+0$" replacement = "management" result_key = "intf_role" [[processors.regex.tags]] key = "name" pattern = "^GigaS+0/1$" replacement = "spine" result_key = "intf_role" [[processors.regex.tags]] key = "name" pattern = "^GigaS+0/2$" replacement = "backbone" result_key = "intf_role" Cont.
  • 34. www.networktocode.com Network to Code Confidential Telegraf -R1 Output InfluxDB and STDOUT [[outputs.influxdb]] urls = ["http://influxdb:8086"] [[outputs.file]] files = ["stdout"] data_format = "influx"
  • 35. www.networktocode.com Network to Code Confidential [global_tags] device_role = "spine" [agent] hostname = "telegraf-r2" Telegraf-R2: Base Input Configuration Cont. [[inputs.gnmi]] addresses = ["r2:6030"] username = "${GNMI_USER}" password = "${GNMI_PASSWORD}" redial = "10s" [[inputs.gnmi.subscription]] name = "interface" origin = "openconfig-interfaces" path = "/interfaces/interface/state/counters" subscription_mode = "sample" sample_interval = "5s"
  • 36. www.networktocode.com Network to Code Confidential Telegraf -R2 Data Normalization and Enrichment Cont. [[processors.rename]] [[processors.rename.replace]] tag = "source" dest = "device" [[processors.regex]] namepass = ["interface"] [[processors.regex.tags]] key = "name" pattern = "^Managementd+$" replacement = "management" result_key = "intf_role" [[processors.regex.tags]] key = "name" pattern = "^Ethernet1$" replacement = "spine" result_key = "intf_role" [[processors.regex.tags]] key = "name" pattern = "^Ethernet2$" replacement = "backbone" result_key = "intf_role"
  • 37. www.networktocode.com Network to Code Confidential Telegraf -R2 Output InfluxDB and STDOUT [[outputs.influxdb]] urls = ["http://influxdb:8086"] [[outputs.file]] files = ["stdout"] data_format = "influx"