SlideShare uma empresa Scribd logo
1 de 41
Using the Splunk Java SDK

       Presented by Damien Dallimore
       Developer Evangelist at Splunk

Copyright © 2012 Splunk Inc.
About me
•       Developer Evangelist at Splunk since July 2012
    •     http://dev.splunk.com
    •     http://splunk-base.splunk.com
    •     Slides available for my “Splunking the JVM” session

•       Splunk Community Member
    •     Splunk4JMX
    •     SplunkJavaLogging
    •     SplunkBase Answers
•       Splunk Architect and Administrator
•       Coder, hacker, architect of Enterprise Java solutions around the globe in
        many different industries(aviation, core banking, card payments etc…)
•       Yes, I do have an accent , so please restrain all your sheep, Lord of the
        Rings and Kim Dotcom heckles until beer o’clock 


                                            2
Agenda
•       Overview of the Splunk Platform
•       REST API & SDKs
•       Java SDK overview
•       Code, Code, Code !
•       Thinking outside the Square
    •     Alternate JVM Languages
    •     Making it easier for developers to log to Splunk
    •     Splunk is not just for Production
•       Questions (feel free to yell out at any time also)
Splunk & Developers
                                                           Accelerate development &
Machine Data        SplunkUI             Custom/Existing
                                                           testing with proactive
                  (Splunk Apps)            Applications
                                                           monitoring
                                               SDKs
                          Search, chart and graph
                    Save and schedule searches as alerts
                                                           Integrate data from Splunk into
                           Export search results           your existing IT environment for
                        Manage inputs and indexes
                       Add & remove users and roles
                                                           operational visibility

                             REST APIs
                                                           Quickly deliver real-time
                                Splunkd                    business insights from Big Data
                                                           outside of IT




                                     4
REST API & SDKs
What you can do with the SDKs & API
  •   Integrate with third-party reporting tools and portals
  •   Log directly to Splunk
  •   Integrate Splunk search results into your application
  •   Extract data for archiving, compliance
  •   Build a custom UI of your choice




                                   6
Splunk REST API
•       Exposes an API method for every feature in the product
    •     Whatever you can do in the UI – you can do through the API.
    •     Run searches
    •     Manage Splunk configurations
•       API is RESTful
    •     Endpoints are served by splunkd
    •     Requests are GET, POST, and DELETE HTTP methods
    •     Responses are Atom XML Feeds
    •     JSON coming in 5.0
    •     Versioning coming in 5.0
    •     Search results can be output in CSV/JSON/XML

                                      7
Language SDKs
•       The SDKs make it easier for you to use the raw REST API ,
        abstracting away much of the lower level plumbing, so you can
        instead just focus on developer productivity
    •     Handling HTTP access
    •     Authenticating
    •     Managing namespaces
    •     Simplifying access to REST endpoints
    •     Building the correct URL for an endpoint
    •     Displaying simplified output for searches
    •     Input of data to a Splunk index
•       Python, Java, Javascript in beta - Supported
•       PHP available now!
•       Still study the core REST API though , if you’re anything like me
        you like to know what is going on under the hood
                                         8
Java SDK overview
Java SDK Design Principles
•   Provide comprehensive coverage of the REST API

•   Have a 1:1 mapping of endpoint to class in the SDK

•   Provide implementation that felt intuitive to a Java developer

•   Lowest common denominator for build – ANT (Any maven people out there?)

•   Project support for Eclipse and IntelliJ – to ease getting started




                                             10
Get the Java SDK setup
•       Open sourced under the Apache v2.0 license
•       Clone from Github : git clone https://github.com/splunk/splunk-sdk-java.git
•       Current release status is “beta”
•       Project level support for Eclipse and Intellij IDE’s
    •      I use Eclipse with the eGit plugin
•       Pre-requisites
    •      JRE 6+
    •      Ant (builds, javadoc generation)
    •      Splunk installed
•       Run the unit tests and examples
    •      Setup a “.splunkrc” file in your user’s home directory
    •      Run an Ant build
    •      Run examples with the command line wrappers
    •      Run the Junit tests from Ant or within your IDE

                                                   11
Key Java SDK Concepts
•       Namespaces
    •     owner : splunk username
    •     app : app context
    •     sharing : user | app | global | system
    •     Defaults to current user and default app
•       Service class
    •     Instantiate an object to connect and login
    •     Entry point for REST API calls
•       Client/Server state
    •     Need to maintain state explicitly
          •   update() : to push changes to splunkd
          •   refresh() : to get changes from splunkd

                                         12
Java SDK Class Model
        HTTPService                                              Resource



          Service                       ResourceCollection                            Entity


                                         EntityCollection               Application   Index      Input


                      InputCollection                      SavedSearchCollection

•   Collections use a common mechanism to create and remove entities
•   Entities use a common mechanism to retrieve and update property values, and access entity metadata
•   Service is a wrapper that facilitates access to all Splunk REST endpoints
                                                      13
public String codeTime(){
  return “Lets Rock n Roll”;
}
Connecting / Authenticating




             15
Simple Entity Retrieval




           16
Logging Events via HTTP REST
Uses receivers/simple endpoint        Uses receivers/stream endpoint




                                 17
Logging Events via Raw TCP
If you don’t already have a TCP port listening, simply create one via the REST API


Setup                                Log to Splunk                            Teardown




                                           18
Searching Overview
•       Search query
    •      a set of commands and functions you use to retrieve events from an index or a real-time stream , "search *
           | head 10".

•       Saved search
    •      a search query that has been saved to be used again and can be set up to run on a regular schedule
•       Search job
    •      an instance of a completed or still-running search operation.Using a search ID you can access the results of
           the search when they become available. Job results are saved for a period of time on the server and can be
           retrieved
•       Search Modes
    •      Normal : asynchronous , poll job for status and results
    •      Blocking : synchronous , a job handle is returned when search is completed
    •      Oneshot : synchronous , no job handle is returned, results are streamed
    •      Export : synchronous, not a search per say, doesn’t create a job, results are streamed oldest to newest


Heaps more juicy examples here : http://dev.splunk.com/view/SP-CAAAEHQ


                                                          19
Blocking Searches
A Job is created                No Job is created




                           20
Non-Blocking Search




         21
Non-Blocking Search (with Paging)




                •    “maxresultrows” in Splunk config default 50K
                •    Not recommended to change this
                •    If result set > 50K , then page through results



                22
Realtime Search




       23
Saved Search




     24
Processing CSV/JSON/XML results




               25
Client/Server State




         26
Namespaces




    27
Thinking outside the square
Alternate JVM Languages

Scala             Groovy            Clojure

Javascript(Rhino) JRuby             PHP(Quercus)

Ceylon            Kotlin            Jython




 We don’t need SDK’s for these languages , we can
 just use the Java SDK !




                           29
Scala “SDK”




     30
Groovy “SDK”




     31
SplunkJavaLogging
•       A logging framework to allow developers to as seamlessly as
        possible integrate Splunk best practice logging semantics into
        their code.
•       Custom handler/appender implementations(REST and Raw
        TCP) for the 3 most prevalent Java logging frameworks in
        play. Splunk events directly from your code.
    •     LogBack
    •     Log4j
    •     java.util.logging
•       Implementation of the SPLUNK CIM(Common Information
        Model)

                                    32
Developers just log as they are used to


                                                   Better




                                                     A-HA


2012-08-07 15:54:06:644+1200 name="Failed Login" event_id="someID" app="myapp" user="jane" somefieldname="foobar"

                                                       33
Logging Framework takes care of the Splunk
        transport , REST or Raw TCP




                    34
<barf>Typical Java Stacktraces in logs</barf>




                      35
SplunkJavaLogging is your friend




               36
Java Stacktraces in Splunk




            37
Use Splunk in dev/test => better quality
                  delivered to prod
                       Testing Tools                                             •   It’s not good enough to assert that your
                                        Splunk
                                                                                     software is production ready because the
                                       Java SDK                                      load test “doesn’t make it fall over”
 Execute Tests                                                                   •   Splunk the app’s machine data throughout
                                          REST
                                                  Perform test assertions            the lifecycle of the test
                                                                                 •   Via a Splunk SDK, enrich your test harness
             Splunk      REST% TCP
                             /%                                                      pass/fail assertions with outputs of Splunk
Your        Java SDK
                                                                    SplunkD
                                                                                     searches
App          Other       Universal%                                              •   Catch malignant code tumors that may have
             Metrics     Forwarder                                                   flown under the radar that your harness
                                                                                     alone couldn’t possibly know about.
                                                                                 •   Grinder + Java SDK + Assertions


                                                                            38
Contact Details
Always more than happy to be contacted for questions,
feedback, collaborations, ideas that will change the world etc…


Email : ddallimore@splunk.com
SplunkBase: damiend
Github: damiendallimore
Twitter : @damiendallimore
Blog : http://blogs.splunk.com/dev
Splunk Dev Platform Team : devinfo@splunk.com
                               39
Links
Gists for all code examples : https://gist.github.com/damiendallimore
Java SDK Homepage : http://dev.splunk.com/view/java-sdk/SP-CAAAECN
Java SDK Github repository : https://github.com/splunk/splunk-sdk-java
SplunkJavaLogging : https://github.com/damiendallimore/SplunkJavaLogging
Splunk Best Practice Logging : http://dev.splunk.com/view/logging-best-
practices/SP-CAAADP6
Splunk REST API :
http://docs.splunk.com/Documentation/Splunk/latest/RESTAPI/RESTcontents



                                 40
//Thanks for coming !
System.exit(5150);

Mais conteúdo relacionado

Mais procurados

Mais procurados (20)

OpenTelemetry For Architects
OpenTelemetry For ArchitectsOpenTelemetry For Architects
OpenTelemetry For Architects
 
Prometheus and Grafana
Prometheus and GrafanaPrometheus and Grafana
Prometheus and Grafana
 
An Introduction To Jenkins
An Introduction To JenkinsAn Introduction To Jenkins
An Introduction To Jenkins
 
Monitoring Kubernetes with Prometheus
Monitoring Kubernetes with PrometheusMonitoring Kubernetes with Prometheus
Monitoring Kubernetes with Prometheus
 
Grafana
GrafanaGrafana
Grafana
 
Monitoring with prometheus
Monitoring with prometheusMonitoring with prometheus
Monitoring with prometheus
 
Event-driven autoscaling through KEDA and Knative Integration | DevNation Tec...
Event-driven autoscaling through KEDA and Knative Integration | DevNation Tec...Event-driven autoscaling through KEDA and Knative Integration | DevNation Tec...
Event-driven autoscaling through KEDA and Knative Integration | DevNation Tec...
 
Observability in Java: Getting Started with OpenTelemetry
Observability in Java: Getting Started with OpenTelemetryObservability in Java: Getting Started with OpenTelemetry
Observability in Java: Getting Started with OpenTelemetry
 
Explore your prometheus data in grafana - Promcon 2018
Explore your prometheus data in grafana - Promcon 2018Explore your prometheus data in grafana - Promcon 2018
Explore your prometheus data in grafana - Promcon 2018
 
PromQL Deep Dive - The Prometheus Query Language
PromQL Deep Dive - The Prometheus Query Language PromQL Deep Dive - The Prometheus Query Language
PromQL Deep Dive - The Prometheus Query Language
 
Terraform modules restructured
Terraform modules restructuredTerraform modules restructured
Terraform modules restructured
 
Intro to open source observability with grafana, prometheus, loki, and tempo(...
Intro to open source observability with grafana, prometheus, loki, and tempo(...Intro to open source observability with grafana, prometheus, loki, and tempo(...
Intro to open source observability with grafana, prometheus, loki, and tempo(...
 
Cloud-Native CI/CD on Kubernetes with Tekton Pipelines
Cloud-Native CI/CD on Kubernetes with Tekton PipelinesCloud-Native CI/CD on Kubernetes with Tekton Pipelines
Cloud-Native CI/CD on Kubernetes with Tekton Pipelines
 
Grafana optimization for Prometheus
Grafana optimization for PrometheusGrafana optimization for Prometheus
Grafana optimization for Prometheus
 
Monitoring MySQL Replication lag with Prometheus & pt-heartbeat
Monitoring MySQL Replication lag with Prometheus & pt-heartbeatMonitoring MySQL Replication lag with Prometheus & pt-heartbeat
Monitoring MySQL Replication lag with Prometheus & pt-heartbeat
 
Grafana Loki: like Prometheus, but for Logs
Grafana Loki: like Prometheus, but for LogsGrafana Loki: like Prometheus, but for Logs
Grafana Loki: like Prometheus, but for Logs
 
Monitoring With Prometheus
Monitoring With PrometheusMonitoring With Prometheus
Monitoring With Prometheus
 
ELK Stack
ELK StackELK Stack
ELK Stack
 
Android graphic system (SurfaceFlinger) : Design Pattern's perspective
Android graphic system (SurfaceFlinger) : Design Pattern's perspectiveAndroid graphic system (SurfaceFlinger) : Design Pattern's perspective
Android graphic system (SurfaceFlinger) : Design Pattern's perspective
 
Best Practices of Infrastructure as Code with Terraform
Best Practices of Infrastructure as Code with TerraformBest Practices of Infrastructure as Code with Terraform
Best Practices of Infrastructure as Code with Terraform
 

Destaque

Splunk | Reporting Use Cases
Splunk | Reporting Use CasesSplunk | Reporting Use Cases
Splunk | Reporting Use Cases
Beth Goldman
 
SplunkLive! Splunk for Insider Threats and Fraud Detection
SplunkLive! Splunk for Insider Threats and Fraud DetectionSplunkLive! Splunk for Insider Threats and Fraud Detection
SplunkLive! Splunk for Insider Threats and Fraud Detection
Splunk
 
QCon London 2015 - Wrangling Data at the IOT Rodeo
QCon London 2015 - Wrangling Data at the IOT RodeoQCon London 2015 - Wrangling Data at the IOT Rodeo
QCon London 2015 - Wrangling Data at the IOT Rodeo
Damien Dallimore
 
Why Docker
Why DockerWhy Docker
Why Docker
dotCloud
 

Destaque (20)

Splunk Application logging Best Practices
Splunk Application logging Best PracticesSplunk Application logging Best Practices
Splunk Application logging Best Practices
 
Java sdk quickstart
Java sdk quickstartJava sdk quickstart
Java sdk quickstart
 
Splunk Developer Platform
Splunk Developer PlatformSplunk Developer Platform
Splunk Developer Platform
 
Splunk | Reporting Use Cases
Splunk | Reporting Use CasesSplunk | Reporting Use Cases
Splunk | Reporting Use Cases
 
SRE in Startup
SRE in StartupSRE in Startup
SRE in Startup
 
Splunk conf2014 - Detecting Fraud and Suspicious Events Using Risk Scoring
Splunk conf2014 - Detecting Fraud and Suspicious Events Using Risk ScoringSplunk conf2014 - Detecting Fraud and Suspicious Events Using Risk Scoring
Splunk conf2014 - Detecting Fraud and Suspicious Events Using Risk Scoring
 
SplunkLive! Splunk for Insider Threats and Fraud Detection
SplunkLive! Splunk for Insider Threats and Fraud DetectionSplunkLive! Splunk for Insider Threats and Fraud Detection
SplunkLive! Splunk for Insider Threats and Fraud Detection
 
Making Pretty Charts in Splunk
Making Pretty Charts in SplunkMaking Pretty Charts in Splunk
Making Pretty Charts in Splunk
 
Splunk .conf2011: Splunk for Fraud and Forensics at Intuit
Splunk .conf2011: Splunk for Fraud and Forensics at IntuitSplunk .conf2011: Splunk for Fraud and Forensics at Intuit
Splunk .conf2011: Splunk for Fraud and Forensics at Intuit
 
QCon London 2015 - Wrangling Data at the IOT Rodeo
QCon London 2015 - Wrangling Data at the IOT RodeoQCon London 2015 - Wrangling Data at the IOT Rodeo
QCon London 2015 - Wrangling Data at the IOT Rodeo
 
Splunk Conf 2014 - Splunking the Java Virtual Machine
Splunk Conf 2014 - Splunking the Java Virtual MachineSplunk Conf 2014 - Splunking the Java Virtual Machine
Splunk Conf 2014 - Splunking the Java Virtual Machine
 
Linux Server Hardening - Steps by Steps
Linux Server Hardening - Steps by StepsLinux Server Hardening - Steps by Steps
Linux Server Hardening - Steps by Steps
 
TXLF: Automated Deployment of OpenStack with Chef
TXLF: Automated Deployment of OpenStack with ChefTXLF: Automated Deployment of OpenStack with Chef
TXLF: Automated Deployment of OpenStack with Chef
 
Threat Hunting
Threat HuntingThreat Hunting
Threat Hunting
 
Exception handling & logging in Java - Best Practices (Updated)
Exception handling & logging in Java - Best Practices (Updated)Exception handling & logging in Java - Best Practices (Updated)
Exception handling & logging in Java - Best Practices (Updated)
 
Softcat Splunk Discovery Day Manchester, March 2017
Softcat Splunk Discovery Day Manchester, March 2017Softcat Splunk Discovery Day Manchester, March 2017
Softcat Splunk Discovery Day Manchester, March 2017
 
Building a Security Information and Event Management platform at Travis Per...
 	Building a Security Information and Event Management platform at Travis Per... 	Building a Security Information and Event Management platform at Travis Per...
Building a Security Information and Event Management platform at Travis Per...
 
DevOps and Chef
DevOps and ChefDevOps and Chef
DevOps and Chef
 
Docker Azure Friday OSS March 2017 - Developing and deploying Java & Linux on...
Docker Azure Friday OSS March 2017 - Developing and deploying Java & Linux on...Docker Azure Friday OSS March 2017 - Developing and deploying Java & Linux on...
Docker Azure Friday OSS March 2017 - Developing and deploying Java & Linux on...
 
Why Docker
Why DockerWhy Docker
Why Docker
 

Semelhante a Using the Splunk Java SDK

SplunkLive! Developer Breakout
SplunkLive! Developer BreakoutSplunkLive! Developer Breakout
SplunkLive! Developer Breakout
Splunk
 
SplunkLive! Developer Session
SplunkLive! Developer SessionSplunkLive! Developer Session
SplunkLive! Developer Session
Splunk
 
Rapid application development with spring roo j-fall 2010 - baris dere
Rapid application development with spring roo   j-fall 2010 - baris dereRapid application development with spring roo   j-fall 2010 - baris dere
Rapid application development with spring roo j-fall 2010 - baris dere
Baris Dere
 
SplunkLive! Introduction to the Splunk Developer Platform
SplunkLive! Introduction to the Splunk Developer PlatformSplunkLive! Introduction to the Splunk Developer Platform
SplunkLive! Introduction to the Splunk Developer Platform
Splunk
 
SparkOscope: Enabling Apache Spark Optimization through Cross Stack Monitorin...
SparkOscope: Enabling Apache Spark Optimization through Cross Stack Monitorin...SparkOscope: Enabling Apache Spark Optimization through Cross Stack Monitorin...
SparkOscope: Enabling Apache Spark Optimization through Cross Stack Monitorin...
Databricks
 
Splunk as a_big_data_platform_for_developers_spring_one2gx
Splunk as a_big_data_platform_for_developers_spring_one2gxSplunk as a_big_data_platform_for_developers_spring_one2gx
Splunk as a_big_data_platform_for_developers_spring_one2gx
Damien Dallimore
 

Semelhante a Using the Splunk Java SDK (20)

SplunkLive! Developer Breakout
SplunkLive! Developer BreakoutSplunkLive! Developer Breakout
SplunkLive! Developer Breakout
 
SplunkLive! Developer Session
SplunkLive! Developer SessionSplunkLive! Developer Session
SplunkLive! Developer Session
 
SplunkLive London 2014 Developer Presentation
SplunkLive London 2014  Developer PresentationSplunkLive London 2014  Developer Presentation
SplunkLive London 2014 Developer Presentation
 
Rapid application development with spring roo j-fall 2010 - baris dere
Rapid application development with spring roo   j-fall 2010 - baris dereRapid application development with spring roo   j-fall 2010 - baris dere
Rapid application development with spring roo j-fall 2010 - baris dere
 
A Lap Around Developer Awesomeness in Splunk 6.3
A Lap Around Developer Awesomeness in Splunk 6.3A Lap Around Developer Awesomeness in Splunk 6.3
A Lap Around Developer Awesomeness in Splunk 6.3
 
SplunkLive! Introduction to the Splunk Developer Platform
SplunkLive! Introduction to the Splunk Developer PlatformSplunkLive! Introduction to the Splunk Developer Platform
SplunkLive! Introduction to the Splunk Developer Platform
 
Rest API with Swagger and NodeJS
Rest API with Swagger and NodeJSRest API with Swagger and NodeJS
Rest API with Swagger and NodeJS
 
SparkOscope: Enabling Apache Spark Optimization through Cross Stack Monitorin...
SparkOscope: Enabling Apache Spark Optimization through Cross Stack Monitorin...SparkOscope: Enabling Apache Spark Optimization through Cross Stack Monitorin...
SparkOscope: Enabling Apache Spark Optimization through Cross Stack Monitorin...
 
December 2013 HUG: Hunk - Splunk over Hadoop
December 2013 HUG: Hunk - Splunk over HadoopDecember 2013 HUG: Hunk - Splunk over Hadoop
December 2013 HUG: Hunk - Splunk over Hadoop
 
Modern web application development with java ee 7
Modern web application development with java ee 7Modern web application development with java ee 7
Modern web application development with java ee 7
 
Building an intelligent big data application in 30 minutes
Building an intelligent big data application in 30 minutesBuilding an intelligent big data application in 30 minutes
Building an intelligent big data application in 30 minutes
 
Splunk in Nordstrom: IT Operations
Splunk in Nordstrom: IT OperationsSplunk in Nordstrom: IT Operations
Splunk in Nordstrom: IT Operations
 
DevOpsDays Houston 2019 - Shaun Ladewig, Robert Stone - From OverTheWallOps t...
DevOpsDays Houston 2019 - Shaun Ladewig, Robert Stone - From OverTheWallOps t...DevOpsDays Houston 2019 - Shaun Ladewig, Robert Stone - From OverTheWallOps t...
DevOpsDays Houston 2019 - Shaun Ladewig, Robert Stone - From OverTheWallOps t...
 
Modern application development with oracle cloud sangam17
Modern application development with oracle cloud sangam17Modern application development with oracle cloud sangam17
Modern application development with oracle cloud sangam17
 
Expanding beyond SPL -- More language support in IBM Streams V4.1
Expanding beyond SPL -- More language support in IBM Streams V4.1Expanding beyond SPL -- More language support in IBM Streams V4.1
Expanding beyond SPL -- More language support in IBM Streams V4.1
 
Splunk for Developers
Splunk for DevelopersSplunk for Developers
Splunk for Developers
 
Big analytics meetup - Extended Jupyter Kernel Gateway
Big analytics meetup - Extended Jupyter Kernel GatewayBig analytics meetup - Extended Jupyter Kernel Gateway
Big analytics meetup - Extended Jupyter Kernel Gateway
 
Splunk as a_big_data_platform_for_developers_spring_one2gx
Splunk as a_big_data_platform_for_developers_spring_one2gxSplunk as a_big_data_platform_for_developers_spring_one2gx
Splunk as a_big_data_platform_for_developers_spring_one2gx
 
Plantilla oracle
Plantilla oraclePlantilla oracle
Plantilla oracle
 
Security DevOps: Wie Sie in agilen Projekten trotzdem sicher bleiben // JAX 2015
Security DevOps: Wie Sie in agilen Projekten trotzdem sicher bleiben // JAX 2015Security DevOps: Wie Sie in agilen Projekten trotzdem sicher bleiben // JAX 2015
Security DevOps: Wie Sie in agilen Projekten trotzdem sicher bleiben // JAX 2015
 

Mais de Damien Dallimore

Mais de Damien Dallimore (8)

Splunk Conf 2014 - Getting the message
Splunk Conf 2014 - Getting the messageSplunk Conf 2014 - Getting the message
Splunk Conf 2014 - Getting the message
 
SpringOne2GX 2014 Splunk Presentation
SpringOne2GX 2014 Splunk PresentationSpringOne2GX 2014 Splunk Presentation
SpringOne2GX 2014 Splunk Presentation
 
A Brief History Of Data
A Brief History Of DataA Brief History Of Data
A Brief History Of Data
 
Spring Integration Splunk
Spring Integration SplunkSpring Integration Splunk
Spring Integration Splunk
 
Splunking the JVM
Splunking the JVMSplunking the JVM
Splunking the JVM
 
Splunk Modular Inputs / JMS Messaging Module Input
Splunk Modular Inputs / JMS Messaging Module InputSplunk Modular Inputs / JMS Messaging Module Input
Splunk Modular Inputs / JMS Messaging Module Input
 
Splunk for JMX
Splunk for JMXSplunk for JMX
Splunk for JMX
 
Splunk Java Agent
Splunk Java AgentSplunk Java Agent
Splunk Java Agent
 

Último

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Último (20)

Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
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
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 

Using the Splunk Java SDK

  • 1. Using the Splunk Java SDK Presented by Damien Dallimore Developer Evangelist at Splunk Copyright © 2012 Splunk Inc.
  • 2. About me • Developer Evangelist at Splunk since July 2012 • http://dev.splunk.com • http://splunk-base.splunk.com • Slides available for my “Splunking the JVM” session • Splunk Community Member • Splunk4JMX • SplunkJavaLogging • SplunkBase Answers • Splunk Architect and Administrator • Coder, hacker, architect of Enterprise Java solutions around the globe in many different industries(aviation, core banking, card payments etc…) • Yes, I do have an accent , so please restrain all your sheep, Lord of the Rings and Kim Dotcom heckles until beer o’clock  2
  • 3. Agenda • Overview of the Splunk Platform • REST API & SDKs • Java SDK overview • Code, Code, Code ! • Thinking outside the Square • Alternate JVM Languages • Making it easier for developers to log to Splunk • Splunk is not just for Production • Questions (feel free to yell out at any time also)
  • 4. Splunk & Developers Accelerate development & Machine Data SplunkUI Custom/Existing testing with proactive (Splunk Apps) Applications monitoring SDKs Search, chart and graph Save and schedule searches as alerts Integrate data from Splunk into Export search results your existing IT environment for Manage inputs and indexes Add & remove users and roles operational visibility REST APIs Quickly deliver real-time Splunkd business insights from Big Data outside of IT 4
  • 5. REST API & SDKs
  • 6. What you can do with the SDKs & API • Integrate with third-party reporting tools and portals • Log directly to Splunk • Integrate Splunk search results into your application • Extract data for archiving, compliance • Build a custom UI of your choice 6
  • 7. Splunk REST API • Exposes an API method for every feature in the product • Whatever you can do in the UI – you can do through the API. • Run searches • Manage Splunk configurations • API is RESTful • Endpoints are served by splunkd • Requests are GET, POST, and DELETE HTTP methods • Responses are Atom XML Feeds • JSON coming in 5.0 • Versioning coming in 5.0 • Search results can be output in CSV/JSON/XML 7
  • 8. Language SDKs • The SDKs make it easier for you to use the raw REST API , abstracting away much of the lower level plumbing, so you can instead just focus on developer productivity • Handling HTTP access • Authenticating • Managing namespaces • Simplifying access to REST endpoints • Building the correct URL for an endpoint • Displaying simplified output for searches • Input of data to a Splunk index • Python, Java, Javascript in beta - Supported • PHP available now! • Still study the core REST API though , if you’re anything like me you like to know what is going on under the hood 8
  • 10. Java SDK Design Principles • Provide comprehensive coverage of the REST API • Have a 1:1 mapping of endpoint to class in the SDK • Provide implementation that felt intuitive to a Java developer • Lowest common denominator for build – ANT (Any maven people out there?) • Project support for Eclipse and IntelliJ – to ease getting started 10
  • 11. Get the Java SDK setup • Open sourced under the Apache v2.0 license • Clone from Github : git clone https://github.com/splunk/splunk-sdk-java.git • Current release status is “beta” • Project level support for Eclipse and Intellij IDE’s • I use Eclipse with the eGit plugin • Pre-requisites • JRE 6+ • Ant (builds, javadoc generation) • Splunk installed • Run the unit tests and examples • Setup a “.splunkrc” file in your user’s home directory • Run an Ant build • Run examples with the command line wrappers • Run the Junit tests from Ant or within your IDE 11
  • 12. Key Java SDK Concepts • Namespaces • owner : splunk username • app : app context • sharing : user | app | global | system • Defaults to current user and default app • Service class • Instantiate an object to connect and login • Entry point for REST API calls • Client/Server state • Need to maintain state explicitly • update() : to push changes to splunkd • refresh() : to get changes from splunkd 12
  • 13. Java SDK Class Model HTTPService Resource Service ResourceCollection Entity EntityCollection Application Index Input InputCollection SavedSearchCollection • Collections use a common mechanism to create and remove entities • Entities use a common mechanism to retrieve and update property values, and access entity metadata • Service is a wrapper that facilitates access to all Splunk REST endpoints 13
  • 14. public String codeTime(){ return “Lets Rock n Roll”; }
  • 17. Logging Events via HTTP REST Uses receivers/simple endpoint Uses receivers/stream endpoint 17
  • 18. Logging Events via Raw TCP If you don’t already have a TCP port listening, simply create one via the REST API Setup Log to Splunk Teardown 18
  • 19. Searching Overview • Search query • a set of commands and functions you use to retrieve events from an index or a real-time stream , "search * | head 10". • Saved search • a search query that has been saved to be used again and can be set up to run on a regular schedule • Search job • an instance of a completed or still-running search operation.Using a search ID you can access the results of the search when they become available. Job results are saved for a period of time on the server and can be retrieved • Search Modes • Normal : asynchronous , poll job for status and results • Blocking : synchronous , a job handle is returned when search is completed • Oneshot : synchronous , no job handle is returned, results are streamed • Export : synchronous, not a search per say, doesn’t create a job, results are streamed oldest to newest Heaps more juicy examples here : http://dev.splunk.com/view/SP-CAAAEHQ 19
  • 20. Blocking Searches A Job is created No Job is created 20
  • 22. Non-Blocking Search (with Paging) • “maxresultrows” in Splunk config default 50K • Not recommended to change this • If result set > 50K , then page through results 22
  • 29. Alternate JVM Languages Scala Groovy Clojure Javascript(Rhino) JRuby PHP(Quercus) Ceylon Kotlin Jython We don’t need SDK’s for these languages , we can just use the Java SDK ! 29
  • 32. SplunkJavaLogging • A logging framework to allow developers to as seamlessly as possible integrate Splunk best practice logging semantics into their code. • Custom handler/appender implementations(REST and Raw TCP) for the 3 most prevalent Java logging frameworks in play. Splunk events directly from your code. • LogBack • Log4j • java.util.logging • Implementation of the SPLUNK CIM(Common Information Model) 32
  • 33. Developers just log as they are used to Better A-HA 2012-08-07 15:54:06:644+1200 name="Failed Login" event_id="someID" app="myapp" user="jane" somefieldname="foobar" 33
  • 34. Logging Framework takes care of the Splunk transport , REST or Raw TCP 34
  • 35. <barf>Typical Java Stacktraces in logs</barf> 35
  • 37. Java Stacktraces in Splunk 37
  • 38. Use Splunk in dev/test => better quality delivered to prod Testing Tools • It’s not good enough to assert that your Splunk software is production ready because the Java SDK load test “doesn’t make it fall over” Execute Tests • Splunk the app’s machine data throughout REST Perform test assertions the lifecycle of the test • Via a Splunk SDK, enrich your test harness Splunk REST% TCP /% pass/fail assertions with outputs of Splunk Your Java SDK SplunkD searches App Other Universal% • Catch malignant code tumors that may have Metrics Forwarder flown under the radar that your harness alone couldn’t possibly know about. • Grinder + Java SDK + Assertions 38
  • 39. Contact Details Always more than happy to be contacted for questions, feedback, collaborations, ideas that will change the world etc… Email : ddallimore@splunk.com SplunkBase: damiend Github: damiendallimore Twitter : @damiendallimore Blog : http://blogs.splunk.com/dev Splunk Dev Platform Team : devinfo@splunk.com 39
  • 40. Links Gists for all code examples : https://gist.github.com/damiendallimore Java SDK Homepage : http://dev.splunk.com/view/java-sdk/SP-CAAAECN Java SDK Github repository : https://github.com/splunk/splunk-sdk-java SplunkJavaLogging : https://github.com/damiendallimore/SplunkJavaLogging Splunk Best Practice Logging : http://dev.splunk.com/view/logging-best- practices/SP-CAAADP6 Splunk REST API : http://docs.splunk.com/Documentation/Splunk/latest/RESTAPI/RESTcontents 40
  • 41. //Thanks for coming ! System.exit(5150);

Notas do Editor

  1. For those searches that stream the results (oneshot and export), the search results are not saved. If the stream is interrupted for any reason, the results are not recoverable without running the search again.
  2. There is code in the develop branch (which we should probably push into main before .conf) that obviates the need for job.refresh()isDone() and isReady() refresh behind your back.
  3. In order to get all events, you have to use the export endpoint. But the export endpoint has different behavior than a normal job. An export cannot be &quot;restarted&quot; when getting events if the network hiccups. A search job can just do another getResults() with the appropriate offset — this is because the export endpoint doesn&apos;t save the results like a search job does. But a search job has a limited number of events it will store on the server — which can be affected by status_buckets — but there is no way to guarantee the upper limit. With the default status_buckets we can get to 500K events. Itay and I experimented with hundreds of stratus_buckets but were only to get up to about 1M events, out of 13M available events.