SlideShare a Scribd company logo
Copyright © 2014 Splunk Inc. 
Getting the Message 
Damien Dallimore 
Dev Evangelist , CSO Office @ Splunk 
Nimish Doshi 
Principal Systems Engineer @ Splunk
Disclaimer 
During the course of this presentation, we may make forward looking statements regarding future events or the 
expected performance of the company. We caution you that such statements reflect our current expectations and 
estimates based on factors currently known to us and that actual events or results could differ materially. For important 
factors that may cause actual results to differ from those contained in our forward-looking statements, please review 
our filings with the SEC. The forward-looking statements made in the this presentation are being made as of the time 
and date of its live presentation. If reviewed after its live presentation, this presentation may not contain current or 
accurate information. We do not assume any obligation to update any forward looking statements we may make. In 
addition, any information about our roadmap outlines our general product direction and is subject to change at any 
time without notice. It is for informational purposes only and shall not, be incorporated into any contract or other 
commitment. Splunk undertakes no obligation either to develop the features or functionality described or to include 
any such feature or functionality in a future release. 
2
Agenda 
3 
Damien’s Section 
What is messaging 
JMS + Demo 
AMQP + Demo 
Kafka + Demo 
Custom message handling 
Architecting for scale 
Nimish’s Section 
Using ZeroMQ 
Using JMS for underutilized computers 
Question time
Damien’s Section
5 
From Middle Earth 
Make Splunk Apps & Add-ons 
Messaging background
6
apps.splunk.com 
github.com/damiendallimore 
7
What is messaging ? 
Messaging infrastructures facilitate the sending/receiving of messages between distributed systems 
Message can be encoded in one of many available protocols 
A common paradigm involves producers and consumers exchanging via topics or queues 
8 
Topics (publish subscribe) 
Queues (point to point) 
TOPIC 
QUEUE
Why are messaging architectures used ? 
Integrating Legacy Systems 
Integrating Heterogeneous Systems 
Distributed Applications 
Cluster Communication 
High Performance Streaming 
9
There’s a lot of information in the pipes 
10
The data opportunity 
Easily tap into a massive source of valuable inflight data flowing around the veins 
Don’t need to access the application directly ,pull data off the messaging bus 
I can not think of a single industry vertical that does not use messaging 
11
Getting this data into Splunk 
Many different messaging platforms and protocols 
JMS (Java Message Service) 
AMQP (Advanced Message Queueing Protocol) 
Kafka 
Nimish will cover some more uses cases also 
12
JMS 
Not a messaging protocol , but a programming interface to many different 
underlying message providers 
WebsphereMQ , Tibco EMS , ActiveMQ , HornetQ , SonicMQ etc
 
Very prevalent in the enterprise software landscape 
DEMO 
13
AMQP 
RabbitMQ 
Supports AMQP 0.9.1, 0.9, 0.8 
Common in financial services and environments that need high performance 
and low latency 
DEMO 
14
Kafka 
Cluster centric design = strong durability and fault tolerance 
Scales elastically 
Producers and Consumers communicate via topics in a Kafka node cluster 
Very popular with open source big data / streaming analytics solutions 
DEMO 
15
Custom message handling 
These Modular Inputs can be used in a multitude of scenarios 
Message bodies can be anything : JSON, XML, CSV, Unstructured text, Binary 
Need to give the end user the ability to customize message processing 
So you can plugin your own custom handlers 
Need to write code , but it is really easy , and there are examples on GitHub 
I’m a big data pre processing fan 
16
Cut the code 
17
Compile, bundle into jar file, copy to Splunk 
18
Declaratively apply it 
Let’s see if it works 
19
Achieving desired scale 
AMQP Mod Input 
AMQP Queue 
20 
Single Splunk Instance 
With 1 Modular Input instance , only so much performance / throughput can be achieved 
You’ll hit limits with JVM heap , CPU , OS STDIN/STDOUT Buffer , Splunk indexing pipeline
So go Horizontal 
AMQP Queue 
21 
Splunk Indexer Cluster 
Universal Forwarders 
AMQP Broker 
AMQP Mod Input AMQP Mod Input
Nimish’s Section
About Me 
‱ Principal Systems Engineer at Splunk in the NorthEast 
‱ Session Speaker at all past Splunk .conf user conferences 
‱ Catch me on the Splunk Blogs 
23
Problem with Getting Business Data from JMS 
The goal is to index the business message contents into Splunk 
Message Uncertainty Principal: 
If you de-queue the message to look at it, you have affected the TXN 
If you use various browse APIs for content, you may miss it 
– Message may have already been consumed by TXN 
Suggestion: Use a parallel queue to log the message 
– Suggestion: Try ZeroMQ 
24
Why use ZeroMQ 
Light Weight 
Multiple Client language support (Python, C++, Java, etc) 
Multiple design patterns (Pub/Sub, Pipeline, Request/Reply, etc) 
Open Source with community support 
25
Application Queue and ZeroMQ Example 
26 
Auto Load Balance 
1 
2
Example Python Sender 
context = zmq.Context() 
socket = context.socket(zmq.PUSH) 
socket.connect('tcp://127.0.0.1:5000') 
sleeptime=0.5 
27 
while True: 
num=random.randint(50,100) 
now = str(datetime.datetime.now()) 
sleep(sleeptime) 
payload = now + " Temperature=" + str(num) 
socket.send(payload)
Python Receiver (Scripted Input) 
context = zmq.Context() 
socket = context.socket(zmq.PULL) 
# Change address and port to match your environment 
socket.bind("tcp://127.0.0.1:5000") 
28 
while True: 
msg = socket.recv() 
print "%s" % msg 
except: 
print "exception"
Python Subscriber (Scripted Input) 
context = zmq.Context() 
socket = context.socket(zmq.SUB) 
socket.connect ("tcp://localhost:5556") 
# Subscribe to direction 
filter = "east" 
socket.setsockopt(zmq.SUBSCRIBE, filter) 
29 
while True: 
string = socket.recv() 
print string
Parallel Pipeline Example 
30
Getting Events out of Splunk 
31 
Splunk SDK 
Use Cases: 
– In Depth processing of Splunk events in a queued manner 
– Use as pivot point to drop off events into a Complex Event Processor 
– Batch Processing of Splunk events outside of Splunk 
ïƒȘ Divide and Conquer Approach as seen in last slide
Java Example using SDK to load ZeroMQ 
String query=search; 
Job job = service.getJobs().create(query, queryArgs); 
while (!job.isDone()) { 
32 
Thread.sleep(100); 
job.refresh(); 
} 
// Get Query Results and store in String str
 (Code Omitted) 
// Assuming single line events 
StringTokenizer st = new StringTokenizer(str, "n"); 
while(st.hasMoreTokens()) { 
String temp= st.nextToken(); 
sock.send(temp.getBytes(), 0); 
byte response[] = sock.recv(0); 
}
Idle Computers at a Corporation 
33 


Idea: Use Ideas from SETI @ Home 
34
Idle Computers Put to Work Using JMS 
35 


Applications for Distributing Work 
Application Server would free up computing resources 
Work could be pushed to underutilized computers 
Examples: 
– Massive Mortgage Calculation Scenarios 
– Linear Optimization Problems 
– Matrix Multiplication 
– Compute all possible paths for combinatorics 
36
Architecture 
Optional 
37
Algorithm 
Application servers push requests to queues, which may include data 
in the request object called a Unit of Work 
JMS client implements doWork() interface to work with data 
Message Driven Bean receives finished work and implements 
doStore() interface 
What does this have to do with Splunk? 
– Time Series results can be stored in Splunk for further or historical analytics 
38
Matrix Example High Level Architecture 
39
Search Language Against Matrix Result 
List Column Values of Each Stored Multiplied Matrix using Multikv 
40 
Screenshot here
Search Language Against Matrix Result 
Visualize the Average for Columns 2 to 5 
41 
Screenshot here
Search Language Against Matrix Result 
Perform arbitrary math on aggregate columns 
42 
Screenshot here
Reference 
ZeroMQ 
– http://apps.splunk.com/app/1000/ 
– Blog: http://blogs.splunk.com/2012/06/08/zeromq-as-a-splunk-input/ 
Using JMS for Underutilized Computers 
– Github Reference: https://github.com/nimishdoshi/JMSClientApp/ 
– Blog: http://blogs.splunk.com/2014/04/11/splunk-as-a-recipient-on-the-jms-grid/ 
– Article:http://www.oracle.com/technetwork/articles/entarch/jms-distributed-work- 
082249.html 
43
Questions ?
THANK YOU 
ddallimore@splunk.com 
ndoshi@splunk.com

More Related Content

PPTX
Splunking the JVM
PPTX
Splunk Conf 2014 - Splunking the Java Virtual Machine
PPTX
Splunk for JMX
PPTX
Flink 0.10 - Upcoming Features
PDF
Strata London 2018: Multi-everything with Apache Pulsar
PDF
Pulsar Architectural Patterns for CI/CD Automation and Self-Service_Devin Bost
PPTX
Can you trust Neutron?
PDF
Ninja, Choose Your Weapon!
Splunking the JVM
Splunk Conf 2014 - Splunking the Java Virtual Machine
Splunk for JMX
Flink 0.10 - Upcoming Features
Strata London 2018: Multi-everything with Apache Pulsar
Pulsar Architectural Patterns for CI/CD Automation and Self-Service_Devin Bost
Can you trust Neutron?
Ninja, Choose Your Weapon!

What's hot (20)

PDF
How to build a Neutron Plugin (stadium edition)
PDF
KubeFlow + GPU + Keras/TensorFlow 2.0 + TF Extended (TFX) + Kubernetes + PyTo...
PPTX
Elk ruminating on logs
PDF
OSMC 2021 | Robotmk: You don’t run IT – you deliver services!
PDF
Kubernetes Summit 2019 - Harden Your Kubernetes Cluster
PDF
Performance Testing using Real Browsers with JMeter & Webdriver
PDF
OpenStack Summit Vancouver: Lessons learned on upgrades
PDF
Cloud: From Unmanned Data Center to Algorithmic Economy using Openstack
PPTX
Performance Comparison of Streaming Big Data Platforms
PDF
OpenStack Tempest and REST API testing
PDF
Automation Evolution with Junos
PDF
Securing your Pulsar Cluster with Vault_Chris Kellogg
PPTX
So we're running Apache ZooKeeper. Now What? By Camille Fournier
PDF
Software Defined Networking: The OpenDaylight Project
PDF
Openwhisk - Colorado Meetups
PPT
Kafka Reliability - When it absolutely, positively has to be there
PPTX
Kafka 0.8.0 Presentation to Atlanta Java User's Group March 2013
PDF
Topology Service Injection using Dragonflow & Kuryr
PDF
Understanding and Extending Prometheus AlertManager
PDF
Spark on Kubernetes - Advanced Spark and Tensorflow Meetup - Jan 19 2017 - An...
How to build a Neutron Plugin (stadium edition)
KubeFlow + GPU + Keras/TensorFlow 2.0 + TF Extended (TFX) + Kubernetes + PyTo...
Elk ruminating on logs
OSMC 2021 | Robotmk: You don’t run IT – you deliver services!
Kubernetes Summit 2019 - Harden Your Kubernetes Cluster
Performance Testing using Real Browsers with JMeter & Webdriver
OpenStack Summit Vancouver: Lessons learned on upgrades
Cloud: From Unmanned Data Center to Algorithmic Economy using Openstack
Performance Comparison of Streaming Big Data Platforms
OpenStack Tempest and REST API testing
Automation Evolution with Junos
Securing your Pulsar Cluster with Vault_Chris Kellogg
So we're running Apache ZooKeeper. Now What? By Camille Fournier
Software Defined Networking: The OpenDaylight Project
Openwhisk - Colorado Meetups
Kafka Reliability - When it absolutely, positively has to be there
Kafka 0.8.0 Presentation to Atlanta Java User's Group March 2013
Topology Service Injection using Dragonflow & Kuryr
Understanding and Extending Prometheus AlertManager
Spark on Kubernetes - Advanced Spark and Tensorflow Meetup - Jan 19 2017 - An...
Ad

Similar to Splunk Conf 2014 - Getting the message (20)

PPTX
Splunk Modular Inputs / JMS Messaging Module Input
PPTX
High powered messaging with RabbitMQ
PDF
An Introduction to the Message Queuning Technology
PPTX
Message Oriented Middleware
PDF
Ranker jms implementation
PDF
Life in a Queue - Using Message Queue with django
PDF
IBM IMPACT 2014 AMC-1866 Introduction to IBM Messaging Capabilities
PDF
[OSC2016] ăƒžă‚€ă‚Żăƒ­ă‚”ăƒŒăƒ“ă‚čă‚’æ”Żăˆă‚‹ MQ ă‚’è€ƒăˆă‚‹
PPTX
Enterprise messaging with jms
PPTX
Do we need JMS in 21st century?
PDF
Enterprise Messaging With ActiveMQ and Spring JMS
PPTX
Message and Stream Oriented Communication
PPTX
JMS Providers Overview
PPTX
SplunkLive! Developer Session
 
ODP
Apache ActiveMQ and Apache Camel
 
PPTX
SplunkLive! Utrecht 2019: NXP
 
PPTX
MQ Light for WTU
PPTX
Spark Kernel Talk - Apache Spark Meetup San Francisco (July 2015)
PPTX
The bigrabbit
PDF
Apache ActiveMQ and Apache ServiceMix
Splunk Modular Inputs / JMS Messaging Module Input
High powered messaging with RabbitMQ
An Introduction to the Message Queuning Technology
Message Oriented Middleware
Ranker jms implementation
Life in a Queue - Using Message Queue with django
IBM IMPACT 2014 AMC-1866 Introduction to IBM Messaging Capabilities
[OSC2016] ăƒžă‚€ă‚Żăƒ­ă‚”ăƒŒăƒ“ă‚čă‚’æ”Żăˆă‚‹ MQ ă‚’è€ƒăˆă‚‹
Enterprise messaging with jms
Do we need JMS in 21st century?
Enterprise Messaging With ActiveMQ and Spring JMS
Message and Stream Oriented Communication
JMS Providers Overview
SplunkLive! Developer Session
 
Apache ActiveMQ and Apache Camel
 
SplunkLive! Utrecht 2019: NXP
 
MQ Light for WTU
Spark Kernel Talk - Apache Spark Meetup San Francisco (July 2015)
The bigrabbit
Apache ActiveMQ and Apache ServiceMix
Ad

More from Damien Dallimore (11)

PPTX
QCon London 2015 - Wrangling Data at the IOT Rodeo
PPTX
SpringOne2GX 2014 Splunk Presentation
PPTX
SplunkLive London 2014 Developer Presentation
PPTX
A Brief History Of Data
PPTX
Integrating Splunk into your Spring Applications
PPTX
Spring Integration Splunk
PPTX
Splunk Java Agent
PPTX
Splunk Developer Platform
PDF
Splunk as a_big_data_platform_for_developers_spring_one2gx
POTX
Using the Splunk Java SDK
POTX
Splunking the JVM (Java Virtual Machine)
QCon London 2015 - Wrangling Data at the IOT Rodeo
SpringOne2GX 2014 Splunk Presentation
SplunkLive London 2014 Developer Presentation
A Brief History Of Data
Integrating Splunk into your Spring Applications
Spring Integration Splunk
Splunk Java Agent
Splunk Developer Platform
Splunk as a_big_data_platform_for_developers_spring_one2gx
Using the Splunk Java SDK
Splunking the JVM (Java Virtual Machine)

Recently uploaded (20)

PPTX
ai tools demonstartion for schools and inter college
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
System and Network Administration Chapter 2
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PPTX
L1 - Introduction to python Backend.pptx
PDF
Nekopoi APK 2025 free lastest update
PPTX
Introduction to Artificial Intelligence
PPT
Introduction Database Management System for Course Database
PPTX
Operating system designcfffgfgggggggvggggggggg
PPTX
history of c programming in notes for students .pptx
PDF
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PDF
Softaken Excel to vCard Converter Software.pdf
PDF
System and Network Administraation Chapter 3
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
ai tools demonstartion for schools and inter college
Adobe Illustrator 28.6 Crack My Vision of Vector Design
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PTS Company Brochure 2025 (1).pdf.......
System and Network Administration Chapter 2
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
L1 - Introduction to python Backend.pptx
Nekopoi APK 2025 free lastest update
Introduction to Artificial Intelligence
Introduction Database Management System for Course Database
Operating system designcfffgfgggggggvggggggggg
history of c programming in notes for students .pptx
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
Softaken Excel to vCard Converter Software.pdf
System and Network Administraation Chapter 3
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
VVF-Customer-Presentation2025-Ver1.9.pptx

Splunk Conf 2014 - Getting the message

  • 1. Copyright © 2014 Splunk Inc. Getting the Message Damien Dallimore Dev Evangelist , CSO Office @ Splunk Nimish Doshi Principal Systems Engineer @ Splunk
  • 2. Disclaimer During the course of this presentation, we may make forward looking statements regarding future events or the expected performance of the company. We caution you that such statements reflect our current expectations and estimates based on factors currently known to us and that actual events or results could differ materially. For important factors that may cause actual results to differ from those contained in our forward-looking statements, please review our filings with the SEC. The forward-looking statements made in the this presentation are being made as of the time and date of its live presentation. If reviewed after its live presentation, this presentation may not contain current or accurate information. We do not assume any obligation to update any forward looking statements we may make. In addition, any information about our roadmap outlines our general product direction and is subject to change at any time without notice. It is for informational purposes only and shall not, be incorporated into any contract or other commitment. Splunk undertakes no obligation either to develop the features or functionality described or to include any such feature or functionality in a future release. 2
  • 3. Agenda 3 Damien’s Section What is messaging JMS + Demo AMQP + Demo Kafka + Demo Custom message handling Architecting for scale Nimish’s Section Using ZeroMQ Using JMS for underutilized computers Question time
  • 5. 5 From Middle Earth Make Splunk Apps & Add-ons Messaging background
  • 6. 6
  • 8. What is messaging ? Messaging infrastructures facilitate the sending/receiving of messages between distributed systems Message can be encoded in one of many available protocols A common paradigm involves producers and consumers exchanging via topics or queues 8 Topics (publish subscribe) Queues (point to point) TOPIC QUEUE
  • 9. Why are messaging architectures used ? Integrating Legacy Systems Integrating Heterogeneous Systems Distributed Applications Cluster Communication High Performance Streaming 9
  • 10. There’s a lot of information in the pipes 10
  • 11. The data opportunity Easily tap into a massive source of valuable inflight data flowing around the veins Don’t need to access the application directly ,pull data off the messaging bus I can not think of a single industry vertical that does not use messaging 11
  • 12. Getting this data into Splunk Many different messaging platforms and protocols JMS (Java Message Service) AMQP (Advanced Message Queueing Protocol) Kafka Nimish will cover some more uses cases also 12
  • 13. JMS Not a messaging protocol , but a programming interface to many different underlying message providers WebsphereMQ , Tibco EMS , ActiveMQ , HornetQ , SonicMQ etc
 Very prevalent in the enterprise software landscape DEMO 13
  • 14. AMQP RabbitMQ Supports AMQP 0.9.1, 0.9, 0.8 Common in financial services and environments that need high performance and low latency DEMO 14
  • 15. Kafka Cluster centric design = strong durability and fault tolerance Scales elastically Producers and Consumers communicate via topics in a Kafka node cluster Very popular with open source big data / streaming analytics solutions DEMO 15
  • 16. Custom message handling These Modular Inputs can be used in a multitude of scenarios Message bodies can be anything : JSON, XML, CSV, Unstructured text, Binary Need to give the end user the ability to customize message processing So you can plugin your own custom handlers Need to write code , but it is really easy , and there are examples on GitHub I’m a big data pre processing fan 16
  • 18. Compile, bundle into jar file, copy to Splunk 18
  • 19. Declaratively apply it Let’s see if it works 19
  • 20. Achieving desired scale AMQP Mod Input AMQP Queue 20 Single Splunk Instance With 1 Modular Input instance , only so much performance / throughput can be achieved You’ll hit limits with JVM heap , CPU , OS STDIN/STDOUT Buffer , Splunk indexing pipeline
  • 21. So go Horizontal AMQP Queue 21 Splunk Indexer Cluster Universal Forwarders AMQP Broker AMQP Mod Input AMQP Mod Input
  • 23. About Me ‱ Principal Systems Engineer at Splunk in the NorthEast ‱ Session Speaker at all past Splunk .conf user conferences ‱ Catch me on the Splunk Blogs 23
  • 24. Problem with Getting Business Data from JMS The goal is to index the business message contents into Splunk Message Uncertainty Principal: If you de-queue the message to look at it, you have affected the TXN If you use various browse APIs for content, you may miss it – Message may have already been consumed by TXN Suggestion: Use a parallel queue to log the message – Suggestion: Try ZeroMQ 24
  • 25. Why use ZeroMQ Light Weight Multiple Client language support (Python, C++, Java, etc) Multiple design patterns (Pub/Sub, Pipeline, Request/Reply, etc) Open Source with community support 25
  • 26. Application Queue and ZeroMQ Example 26 Auto Load Balance 1 2
  • 27. Example Python Sender context = zmq.Context() socket = context.socket(zmq.PUSH) socket.connect('tcp://127.0.0.1:5000') sleeptime=0.5 27 while True: num=random.randint(50,100) now = str(datetime.datetime.now()) sleep(sleeptime) payload = now + " Temperature=" + str(num) socket.send(payload)
  • 28. Python Receiver (Scripted Input) context = zmq.Context() socket = context.socket(zmq.PULL) # Change address and port to match your environment socket.bind("tcp://127.0.0.1:5000") 28 while True: msg = socket.recv() print "%s" % msg except: print "exception"
  • 29. Python Subscriber (Scripted Input) context = zmq.Context() socket = context.socket(zmq.SUB) socket.connect ("tcp://localhost:5556") # Subscribe to direction filter = "east" socket.setsockopt(zmq.SUBSCRIBE, filter) 29 while True: string = socket.recv() print string
  • 31. Getting Events out of Splunk 31 Splunk SDK Use Cases: – In Depth processing of Splunk events in a queued manner – Use as pivot point to drop off events into a Complex Event Processor – Batch Processing of Splunk events outside of Splunk ïƒȘ Divide and Conquer Approach as seen in last slide
  • 32. Java Example using SDK to load ZeroMQ String query=search; Job job = service.getJobs().create(query, queryArgs); while (!job.isDone()) { 32 Thread.sleep(100); job.refresh(); } // Get Query Results and store in String str
 (Code Omitted) // Assuming single line events StringTokenizer st = new StringTokenizer(str, "n"); while(st.hasMoreTokens()) { String temp= st.nextToken(); sock.send(temp.getBytes(), 0); byte response[] = sock.recv(0); }
  • 33. Idle Computers at a Corporation 33 

  • 34. Idea: Use Ideas from SETI @ Home 34
  • 35. Idle Computers Put to Work Using JMS 35 

  • 36. Applications for Distributing Work Application Server would free up computing resources Work could be pushed to underutilized computers Examples: – Massive Mortgage Calculation Scenarios – Linear Optimization Problems – Matrix Multiplication – Compute all possible paths for combinatorics 36
  • 38. Algorithm Application servers push requests to queues, which may include data in the request object called a Unit of Work JMS client implements doWork() interface to work with data Message Driven Bean receives finished work and implements doStore() interface What does this have to do with Splunk? – Time Series results can be stored in Splunk for further or historical analytics 38
  • 39. Matrix Example High Level Architecture 39
  • 40. Search Language Against Matrix Result List Column Values of Each Stored Multiplied Matrix using Multikv 40 Screenshot here
  • 41. Search Language Against Matrix Result Visualize the Average for Columns 2 to 5 41 Screenshot here
  • 42. Search Language Against Matrix Result Perform arbitrary math on aggregate columns 42 Screenshot here
  • 43. Reference ZeroMQ – http://apps.splunk.com/app/1000/ – Blog: http://blogs.splunk.com/2012/06/08/zeromq-as-a-splunk-input/ Using JMS for Underutilized Computers – Github Reference: https://github.com/nimishdoshi/JMSClientApp/ – Blog: http://blogs.splunk.com/2014/04/11/splunk-as-a-recipient-on-the-jms-grid/ – Article:http://www.oracle.com/technetwork/articles/entarch/jms-distributed-work- 082249.html 43
  • 45. THANK YOU ddallimore@splunk.com ndoshi@splunk.com

Editor's Notes

  • #6: From Auckland Dev evang , ex customer 5th Conf Make Apps , Cut code Through messaging background , a lot of integration work in many different industrys , particularly in the enterprise Java space.
  • #7: Everything 100% open source use , reuse , whatever. Collaborate Community answers.splunk.com for support is best
  • #10: Enterprise Service Buses Multi tier apps ,asynch processing Apache Storm That pretty broadly covers most enterprise software scenarios.
  • #14: Interoperablity not guaranteed message producers and consumers may be implemented differently You “plugin” the underlying message provider implemention
  • #15: Wire level protocol, hence better interoperabilty than JMS and better performance Usual messaging features such as , Flow control , guaranteed delivery, quality of service etc
 JP Morgan chase 1.0 is an entirely different protocol , any demand for this ?? Swiftmq Apache apollo Apache qpid
  • #16: Manage access to the cluster with Apache Zookeeper Data streams can be partitioned over multiple machines in the cluster Apache storm spout
  • #17: If you have to opportunity to get the data into an optimal format for Splunk , do it. Handle custom payloads , even binary Efficient use of license Pre compute some values that might not be best suited to the Splunk search language
  • #18: Inputting the setting into stanza Send message Show reversed output
  • #20: com.splunk.modinput.jms.customhandler.MessageTextReverser
  • #21: Same pattern applys to JMS and Kafka
  • #22: Your only limits are going to be your ability to provision Splunk nodes. Same pattern applys to other Mod Inputs Works with queues , not pub sub topics (you’ll get duplicates)