-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathConf19_Complete_Session_Guide_Json
5520 lines (5520 loc) · 437 KB
/
Conf19_Complete_Session_Guide_Json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"Event": ".conf19",
"Title": "2623 - First Timer Orientation"
},
{
"Event": ".conf19",
"Title": "BA1130 - Demonstrating The Value Of A Business Flow Use Case",
"SkillLevel": "Good for all skill levels",
"Track": "Business Analytics",
"Products": ["Splunk Business Flow", "Splunk Cloud", "Splunk Enterprise"],
"Speakers": [
"Dirk Beerbohm , Senior Sales Engineer, Splunk",
"Martin Senebald , COCUS AG"
],
"Industry": "Not industry specific",
"Description": "As organizations look to extend Splunk to new datasets for business process insights, it is crucial to have the right data to work with. However Splunk teams can get stuck demonstrating the value of new solutions without having data available. Some very intelligent approaches to data sampling, data preparation, and query optimization can dramatically accelerate your ability to create value from more data. In this session, you will learn some of these techniques so you can quickly make a business case and demonstrate the value for Splunk Business Flow in your organization.n ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/BA1130.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/BA1130.mp4"
},
{
"Event": ".conf19",
"Title": "BA1188 - See What’s New With Splunk Business Flow",
"SkillLevel": "Good for all skill levels",
"Track": "Business Analytics",
"Products": "Splunk Business Flow",
"Speakers": "Lizzy Li , Product Manager, Business Flow, Splunk",
"Industry": "Online Services",
"Description": "Business operations and process improvement teams have relied on Splunk for analyzing their business processes. Earlier this year, Splunk launched Business Flow as a new solution for interactive discovery and investigation of any business process. In this session, hear and see all of Splunk's latest innovations for business operations and process improvement professionals.n ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/BA1188.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/BA1188.mp4"
},
{
"Event": ".conf19",
"Title": "BA1191 - Driving More Sales at Deutsche Bahn- DB Systel’s Journey Mapping With Splunk Business Flow",
"SkillLevel": "Beginner",
"Track": "Business Analytics",
"Products": ["Splunk Business Flow", "Splunk Enterprise"],
"Speakers": [
"Ilario Angilletta , Consultant, Deutsche Bahn",
"Oliver Kempf , Founder & Product Owner Process Mining, Deutsche Bahn"
],
"Industry": "Not industry specific",
"Description": "As one of the largest transportation providers in the world, Deutsche Bahn is eager to understand the customer experience of its passengers interacting with its agents. Driving greater sales requires highly efficient engagement with call center agents. However, efficiencies can be hard to understand and measure with so many call center interactions. DB Systel Gmbh, the IT services arm of Deutsche Bahn, uses Splunk Business Flow to quickly map thousands of customer experiences to understand opportunities for improving efficiencies. In this session, learn how Deutsche Bahn is able to operate a more efficient call center and drive greater passenger sales using the fast and flexible insights of Splunk Business Flow.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/BA1191.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/BA1191.mp4"
},
{
"Event": ".conf19",
"Title": "BA1204 - Improving the Medical Claims Process with Splunk",
"SkillLevel": "Good for all skill levels",
"Track": "Business Analytics",
"Products": "Splunk Enterprise",
"Speakers": "Nate Kwong , Staff Sales Engineer, Splunk",
"Industry": "Healthcare",
"Description": "A large healthcare provider can process thousands of medical claims per day and millions of claims per month. The claims process involves multiple steps and many moving parts and can take weeks to complete. With the use of Splunk, a healthcare customer has been able to increase its visibility and insights into the medical claims process. The result is time savings in the claims process, improved customer experience, and increased productivity. Learn how a healthcare customer is leveraging Splunk to perform near real-time and historical analysis to continuously improve the claims process.n ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/BA1204.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/BA1204.mp4"
},
{
"Event": ".conf19",
"Title": "BA1321 - 40 Ways to Use Splunk in Financial Services",
"SkillLevel": "Good for all skill levels",
"Track": "Business Analytics",
"Products": [
"Splunk Enterprise",
"Splunk Enterprise Security",
"Splunk Machine Learning Toolkit"
],
"Speakers": [
"Duncan Ash , AVP Global Financial Services, Splunk",
"Haider Al-Seaidy , Financial Services Industry Specialist, Splunk"
],
"Industry": "Financial Services",
"Description": "In this session we will show you how Splunk customers around the world are using Splunk in creative ways to solve a range of challenges, from Trading Strategies to Market Abuse, and from Customer On-boarding to Customer Churn. There are no limits to what Splunk can be used for, and this session will help you get new ideas for how to deploy Splunk in your business.n ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/BA1321.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/BA1321.mp4"
},
{
"Event": ".conf19",
"Title": "BA1428 - Business Flow vs The Real World. Cutting Through Complexity in Big Retail to Deliver Broad and Deep Assurance",
"SkillLevel": "Intermediate",
"Track": "Business Analytics",
"Products": "Splunk Business Flow",
"Speakers": "Paul Adams , Octamis",
"Industry": "Retail",
"Description": "At a major UK retail organization, we developed so many great dashboards over the years for every conceivable business area. This once sufficed, but it fuelled greater expectation in an ever harsher trading environment. Enter Peak Trade periods and the need for outcome-centered visibility across the order fulfillment process 'just got real'.n Could Splunk Business Flow help us to uncover the actual flow, given the teams who built it are long disbanded? Could we talk 'flow' when support teams align to 'steps'? n What we found was data that cannot agree what an Order is. Processes which tackle different aspects of an order, sometimes in parallel or batch. Processes which fork and then merge later on. Processes which go into planned deep-freeze for days or weeks before reawakening. Data formats which are hostile. The list goes on.n We take you through the thought process, share mistakes and learnings, and outline considerations/techniques to help you win in the arena of real-world data.n ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/BA1428.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/BA1428.mp4"
},
{
"Event": ".conf19",
"Title": "BA1512 - Just a normal day in the office – Data driven business process improvements for a global supply chain company.",
"SkillLevel": "Beginner",
"Track": "Business Analytics",
"Products": [
"Splunk Cloud",
"Splunk IT Service Intelligence",
"Splunk Machine Learning Toolkit"
],
"Speakers": [
"Holger Diekhoff , Manager Operational Intelligence, Arvato Supply Chain Solutions",
"Ralf Walkenhorst , ITOA Specialist, Splunk"
],
"Industry": "Travel & Transportation",
"Description": "'Our IT-powered business processes are too slow.' Does this sound familiar? If so, that is usually the perfect starting point to dig in and start improving them. Unfortunately, specific data that could help with that effort are not available – normally. In this session we will show you how we at Arvato Supply Chain Solutions got the data we needed and used it to improve the collaboration between IT and business. You will learn how we connected different IT systems such as SAP and conveyor line to Splunk Cloud, and how this helped us to analyze business processes with IT Service Intelligence (ITSI). And, as the icing on the cake, we give you a sneak peak of the machine learning algorithm we implemented to continuously improve our business processes.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/BA1512.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/BA1512.mp4"
},
{
"Event": ".conf19",
"Title": "BA1529 - Splunk Business Flow + Splunk Connect for Kubernetes = Happy Containers",
"SkillLevel": "Good for all skill levels",
"Track": "Business Analytics",
"Products": "Splunk Business Flow",
"Speakers": [
"Matt Modestino , ITOA Practitioner, Splunk",
"Tom Martin , Staff Practitioner, Splunk"
],
"Industry": "Financial Services",
"Description": "Managing container deployment is the new thing for IT and Splunk is making it easier to monitor your container deployment processes. In this theater session, see how Splunk Business Flow combined with Splunk Connect for Kubernetes can help IT administrators get immediate visibility into Kubernetes deployments to spot delays and failures.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/BA1529.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/BA1529.mp4"
},
{
"Event": ".conf19",
"Title": "BA1593 - Monitoring the order fulfilment process within an automated warehouse using Splunk Business Flow",
"SkillLevel": "Beginner",
"Track": "Business Analytics",
"Products": ["Splunk Business Flow", "Splunk Enterprise"],
"Speakers": "Jamie Frost , Business Improvement Analyst, TGW Limited",
"Industry": "Not industry specific",
"Description": "Attendees will see how Splunk Enterprise and Splunk Business Flow are used to monitor the order fulfilment process within an automated warehouse in real time. You also will see how proactive alerts inform the warehouse that a Key Performance Indicator (KPI) is under performing. Then, using process mining to investigate, find the root cause to solve issues before they become problems. This presentation will initially describe the workings of an automated warehouse and the data generated. It then will cover the process of ingesting this data into Splunk and configuring Splunk Business Flow to monitor processes and KPIs. Finally, the session will review the benefits to TGW and its customers from deploying Splunk Enterprise and Splunk Business Flow. Come to the session to see how the monitoring, alerting, and process mining functionality in Splunk Enterprise and Splunk Business Flow provides a deep insight into what is happening inside an automated warehouse.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/BA1593.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/BA1593.mp4"
},
{
"Event": ".conf19",
"Title": "BA1623 - Introduction to monitoring business operations with Acceleris’ party dashboard",
"SkillLevel": "Good for all skill levels",
"Track": "Business Analytics",
"Products": [
"Splunk Enterprise",
"Splunk IT Service Intelligence",
"Splunk Machine Learning Toolkit"
],
"Speakers": [
"Martin Gerber , Crunching Master, Acceleris AG",
"OJ Stapleton , Data / Tech Master, Data Mavericks by Acceleris"
],
"Industry": "Not industry specific",
"Description": "Why should running a business feel any different than throwing a party? To demonstrate how Splunk can be used to monitor and manage business operations, the DATA Mavericks team at Acceleris has iteratively perfected its Party Dashboard. It started out as a gimmick at the inauguration party of the company's new headquarters, but now the Party Dashboard demonstrates how Splunk’s dashboarding helps any team get real-time visibility into any operation. Join this session to learn why they chose the relevant metrics, how they collected and fed the data to Splunk, and what meaningful insights were generated as a fun introductory example of using Splunk to get visibility into your business operations.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/BA1623.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/BA1623.mp4"
},
{
"Event": ".conf19",
"Title": "BA1710 - Splunk Business Flow for IT Operations Workflows",
"SkillLevel": "Beginner",
"Track": "Business Analytics",
"Products": ["Splunk Business Flow", "Splunk Enterprise"],
"Speakers": "Tom Martin , Staff Practitioner, Splunk",
"Industry": "Technology",
"Description": "Everyone knows Splunk can give you visibility into incidents – but imagine if Splunk could provide visibility into your CI/CD processes before you go live too! In this session, get a quick overview of how Splunk Business Flow can help anyone in IT operations identify opportunities to optimize and accelerate their organization’s IT operational workflows.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/BA1710.pdf"
},
{
"Event": ".conf19",
"Title": "BA1853 - From a dataful life to unlocking difference- building a data fabric to drive customer and business value in just 60 days",
"SkillLevel": "Good for all skill levels",
"Track": "Business Analytics",
"Products": ["Splunk Enterprise", "Splunk IT Service Intelligence"],
"Industry": "Communications"
},
{
"Event": ".conf19",
"Title": "BA1868 - Delivering real-time sales journey analytics and IT operational health with IT Service Intelligence",
"SkillLevel": "Intermediate",
"Track": "Business Analytics",
"Products": [
"Splunk Cloud",
"Splunk Enterprise",
"Splunk IT Service Intelligence"
],
"Speakers": "Stuart Robertson , Consulting Director, iDelta",
"Industry": "Financial Services",
"Description": "Splunk and ITSI are already loved by IT Operations and Application Support teams - but can you help your Business Operations teams love them too?n n Splunk’s unique approach to AIOps and monitoring empowers every organization in your enterprise – from IT to Apps to Business – to utilise the same data for multiple use cases and user communities. Through this session, you’ll learn how to implement a logging framework that delivers across multiple channels. Key concepts will include ingesting AWS data, ITSI KPI base searches, entity filtering, and APM techniques. Join this session to learn how to extend your Splunk usage with business KPIs and perform sales journey analytics to grow your list of stakeholders.n ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/BA1868.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/BA1868.mp4"
},
{
"Event": ".conf19",
"Title": "BA1920 - Splunking the Shopfloor- Improving the Manufacturing Process with Splunk",
"SkillLevel": "Beginner",
"Track": "Business Analytics",
"Products": ["Splunk Business Flow", "Splunk Enterprise"],
"Speakers": [
"Coty Pastene , DevOps Engineer, Shaw Industries",
"Logan Templeton , Senior Technical Process Engineer, Shaw Industries"
],
"Industry": "Manufacturing",
"Description": "The sophisticated environment of a modern manufacturing plant demands that workers and management constantly synthesize data sources from different systems to optimize use of raw materials, work in process levels, and track inventory. This session will show how Splunk software can be used to collect, analyze, and report this information in real time to drive continuous improvement and business metrics.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/BA1920.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/BA1920.mp4"
},
{
"Event": ".conf19",
"Title": "BA1959 - Case Study- Call Center Agent Performance Monitoring",
"SkillLevel": "Advanced",
"Track": "Business Analytics",
"Products": "Splunk Enterprise",
"Speakers": [
"Jeremy Lemley , Lead Operations Analyst, CenturyLink",
"Russ White , Operations Analyst II, CenturyLink"
],
"Industry": "Communications",
"Description": "Do you want to monitor call-center employee performance in Splunk? We all know Splunk does a great job with web logs and IoT devices, but could it be used to provide a meaningful Scorecard for 3000+ employees and their management? We think it can, and we would like to share our successful implementation of a Splunk Employee Metrics Dashboard. Some of the concepts include: data preparation, summary indexes, tokens, custom CSS and JavaScript, drilldowns to the details, security, and more!",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/BA1959.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/BA1959.mp4"
},
{
"Event": ".conf19",
"Title": "BA1966 - Product Overview- Business Analytics with Business Flow",
"SkillLevel": "Good for all skill levels",
"Track": "Business Analytics",
"Products": "Splunk Enterprise",
"Speakers": [
"Brian Hoover , Sales Specialist, Business Analytics, Splunk",
"Charles Adriaenssens , EMEA Specialist Lead Business Analytics, Splunk"
],
"Industry": "Not industry specific",
"Description": "Eager to get started with Splunk Business Flow? Splunk Business Flow is Splunk’s process mining solution for interactively exploring business processes to drive operational efficiencies. In this session, learn all the key concepts and terminology in Splunk Business Flow. You also will get a walkthrough of the major capabilities of Splunk Business Flow that will allow you to view a process flow, understand some basic metrics, explore and filter with attributes, and then dig into specific cases to diagnose potential anomalies.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/BA1966.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/BA1966.mp4"
},
{
"Event": ".conf19",
"Title": "BA2082 - Healthcare and Splunk – Leading the Way in Patient Care!",
"SkillLevel": "Beginner",
"Track": "Business Analytics",
"Products": "Splunk Enterprise",
"Industry": ["Healthcare", "Non-Profit"]
},
{
"Event": ".conf19",
"Title": "BA2130 - What's New in Business Analytics and Business Flow",
"SkillLevel": "Good for all skill levels",
"Track": "Business Analytics",
"Products": ["Splunk Business Flow", "Splunk Enterprise"],
"Speakers": [
"Faya Peng , Senior Director, Product Management, Splunk",
"Lizzy Li , Product Manager, Business Flow, Splunk"
],
"Industry": "Not industry specific",
"Description": "Business operations teams have relied on Splunk for operational intelligence, helping them to discover bottlenecks, fallout, and other issues in order to deliver more efficient business processes and customer experiences with higher conversions. In this session, learn about Splunk's latest innovations for business operations professionals.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/BA2130.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/BA2130.mp4"
},
{
"Event": ".conf19",
"Title": "BA2642 - Technical Overview- How We Used Splunk Business Flow at Splunk for IT Service Delivery",
"SkillLevel": "Advanced",
"Track": "Business Analytics",
"Products": "Splunk Business Flow",
"Industry": "Not industry specific"
},
{
"Event": ".conf19",
"Title": "BAS2765 - Ideas to Data to Outcomes",
"SkillLevel": "Good for all skill levels",
"Track": "Business Analytics",
"Products": ["Phantom", "Splunk Enterprise", "Splunk Enterprise Security"],
"Speakers": "Rick Pina , WWT",
"Industry": "Public Sector",
"Description": "WWT integrates Splunk in enterprise architectures for our joint customers. Rick Pina from WWT is going to describe how Splunk, when part of a larger architecture, is providing true mission and operational outcomes.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/BAS2765.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/BAS2765.mp4"
},
{
"Event": ".conf19",
"Title": "BAS2766 - Machine Data Alchemy- Transforming Digital Exhaust into Campus Gold",
"SkillLevel": "Good for all skill levels",
"Track": "Business Analytics",
"Products": "Splunk Enterprise",
"Speakers": [
"Matt Portnoy , Senior Sales Engineer, Splunk",
"Nitin Madhok , Executive Director Business Intelligence & Advanced Data Analytics, Clemson University"
],
"Industry": "Public Sector",
"Description": "Students, faculty and staff increasingly rely on technology for all aspects of campus activity. Universities must learn how to capture campus-wide data and transform it into value for everyone’s benefit. Clemson University will describe how they use data insights to deliver on student experience in a secure and connected setting. Clemson analyzed data from their Learning Management System (Canvas) using Splunk, so student and instructor activity is available in near real time which offers valuable feedback to the University. Learn how they drove additional speed and efficiency into other campus areas providing greater visibility of issues that consumed time and resources. Customer Support, IT security, and IT operations have also leveraged the Splunk platform to significantly expand and improve Clemson’s ability to make impactful decisions. We’ll share more details about these use cases so reserve your seat now for insights of your own!n ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/BA2766.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/BAS2766.mp4"
},
{
"Event": ".conf19",
"Title": "BAS2793 - Classifying Evil – Combating Human Trafficking with the power of Data & Analytics",
"SkillLevel": "Good for all skill levels",
"Track": "Business Analytics",
"Products": "Splunk Enterprise",
"Speakers": [
"Monark Vyas , Digital Strategy Senior Manager, Accenture",
"Sherrie Caltagirone , Executive Director, Global Emancipation Network"
],
"Industry": "Not industry specific",
"Description": "Human trafficking is one of the most egregious and lucrative crimes of modern society. Traffickers use both lawful and illicit infrastructure to conduct business, making it difficult for defenders to identify trafficking on their services.n n In our next innovative leap, Global Emancipation Network partnered with Splunk4Good and Accenture to develop the world’s first trafficking content classifier. We are using a Splunk powered data & analytics platform tocreate a risk scoring engine that assigns values to indicators and patterns and provides action options on flagged results to allow better decision-making for law enforcement, government, and private sector users. Learn how Splunk can turn data into robust classifiers to help save lives.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/BAS2793.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/BAS2793.mp4"
},
{
"Event": ".conf19",
"Title": "BAS2794 - Applied Intelligence - Powered Pivot to the Future",
"SkillLevel": "Good for all skill levels",
"Track": "Business Analytics",
"Products": "Splunk Enterprise",
"Speakers": "John Matchette , Managing Director, Accenture",
"Industry": "Not industry specific",
"Description": "AI and automation are fueling a new norm of digital disruption and breeding new forms of competition. To stay ahead, businesses must continuously innovate with speed and agility like never before. Learn how major companies are using Splunk powered intelligent warehouses with machine learning led inventory optimization, end to end supply chain visibility and chatbot integrations to create unprecedented business outcomes. Check out the secrets of 'Rotation Masters' and how they are using AI to do things differently and drive double-digit growth.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/BAS2794.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/BAS2794.mp4"
},
{
"Event": ".conf19",
"Title": "BAS2795 - Applying Artificial Intelligence - Making It Real by Empowering Our Businesses and Communities",
"SkillLevel": "Good for all skill levels",
"Track": "Business Analytics",
"Products": "Splunk Enterprise",
"Speakers": "Arnab Chakraborty , Managing Director, Applied Intelligence – US West, Accenture",
"Industry": "Not industry specific",
"Description": "Data is disrupting every industry, and tapping into dark data with applied intelligence is empowering businesses & communities to make real world impact. From enhanced consumer experiences to intelligent enterprises, the use of digital technologies powered by analytics and artifical intelligence are creating new business avenues. Learn how amanufacturing giants are using AI powered digital twins to improve their product journey from design to maintenance. Leveraging Splunk to create smart, connected products, platforms and business models that live both physically and digitally.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/BAS2795.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/BAS2795.mp4"
},
{
"Event": ".conf19",
"Title": "BAS2981 - Accelerating Business Decisions across end-to-end process",
"SkillLevel": "Good for all skill levels",
"Track": "Business Analytics",
"Products": ["Splunk Enterprise", "Splunk IT Service Intelligence"],
"Industry": "Financial Services"
},
{
"Event": ".conf19",
"Title": "DEV1114 - Vagrant and Splunk Development- Building Splunk Apps for any Environment",
"SkillLevel": "Intermediate",
"Track": ["Developer", "Splunk Developer"],
"Products": "Splunk Enterprise",
"Speakers": "Jason Rauen , Senior Lead Technologist, Booz Allen Hamilton",
"Industry": "Not industry specific",
"Description": "Vagrant is virtualization technology that builds portable, virtual software development environments. Leveraging this technology for Splunk development allows agile and DevOps teams to easily collaborate in Splunk development in as way that tightly mirrors their production environment, even when working with a mix of environments such as Mac and Windows. Vagrant’s multi-machine environments can perfectly replicate any Splunk architecture, including complicated clustering and networking configurations, using a single Vagrantfile that can be shared directly or committed to a version control system. From the Forwarder to a search head cluster member, see how your configurations and code work in your environment across the entire data pipeline right on your machine, or test your Splunkbase app on every possible architecture from single server to distributed multi-site clusters, all with a single command: vagrant up.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/DEV1114.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEV1114.mp4"
},
{
"Event": ".conf19",
"Title": "DEV1139 - Detecting Anomalies in DSP Pipelines Using Real Time Machine Learning",
"SkillLevel": "Intermediate",
"Track": ["Developer", "Splunk Developer"],
"Products": "Splunk Enterprise",
"Speakers": [
"Harsha Wasalathanrige Don , Software Engineer, Splunk",
"Ram Sriharsha , Sr Principal Scientist, Head of Applied Research, Splunk"
],
"Industry": "Not industry specific",
"Description": "Machine Learning on the stream is useful for a few important reasons: scenarios where we want to dramatically reduce the resource utilization while providing high fidelity results and in use cases where we need algorithms to adapt to changing patterns and drifts in distributions real time. In this talk, we will discuss ongoing work in the area of streaming machine learning and show how we leverage Flink and DSP to build real time machine learning systems that allow us to perform adaptive thresholding and anomaly detection online. As an application of these principles, we will showcase how real time machine learning is used to detect anomalies in DSP pipelines. The talk will introduce relevant background in streaming machine learning as well as the problem of anomaly detection on Kubernetes logs. ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/DEV1139.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEV1139.mp4"
},
{
"Event": ".conf19",
"Title": "DEV1140 - Next Generation Data Ingestion and Preparation with Splunk",
"SkillLevel": "Intermediate",
"Track": ["Developer", "Splunk Developer"],
"Products": ["Splunk Developer Cloud", "Splunk Enterprise"],
"Speakers": [
"Asmita Puri , Sr. Software Engineer, Splunk",
"Eric Sammer , Distinguished Engineer, Splunk"
],
"Industry": "Not industry specific",
"Description": "You think data ingestion into Splunk is cumbersome today? Don’t enjoy writing Technology Add-ons (TA) for specific use cases? Then this talk is for you! We will walk through data ingestion using the data sources supported by the new Splunk Investigate wizard. This allows users of all levels to configure their data source and perform various manipulation functions on the ingested data to make sure it meets their use case. We will also go over the guiding principles of the underlying Data Stream Processing (DSP) pipeline which empowers the user to add their own customizations and send data to a variety of destinations. We will compare this with current Splunk Enterprise data ingestion process by configuring a TA for a specific use case and then alter the ingested data to the desired format before sending it to an index. The user will be able to draw a contrast between the two approaches and see how it does not have to take up to 6 weeks to acquire and prepare data for analytics in Splunk. We hope this session leaves the user excited about data ingestion and prep. ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/DEV1140.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEV1140.mp4"
},
{
"Event": ".conf19",
"Title": "DEV1141 - Building applications with Splunk UI and Splunk React Visualizations ",
"SkillLevel": "Intermediate",
"Track": ["Developer", "Splunk Developer"],
"Products": "Splunk Developer Cloud",
"Speakers": [
"Patrick Wied , Senior Software Engineer, Splunk",
"Ziyan Wang , Software Engineer, Splunk"
],
"Industry": "Not industry specific",
"Description": "In this session we will walk you through the process of creating a highly customized application experience using React and Splunk's UI and visualization libraries. ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/DEV1141.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEV1141.mp4"
},
{
"Event": ".conf19",
"Title": "DEV1173 - Python 3 Compatibility Dive- Don't Let Strings Byte You in the Apps",
"SkillLevel": "Advanced",
"Track": ["Developer", "Splunk Developer"],
"Products": ["Splunk Cloud", "Splunk Enterprise"],
"Speakers": [
"Cory Burke , Principal Software Engineer, Splunk",
"Samat Jain , Senior Software Engineer, Splunk"
],
"Industry": "Not industry specific",
"Description": "You knew it had to happen, Splunk is migrating to Python 3! We want this migration to be as painless as possible for apps and scripts developers, but it necessitates some compatibility requirements. This talk will dive into what parts of your apps and scripts will have to become Python 3 compatible. You’ll explore approaches to using Python community supplied backporting libraries as well as Python 2/3 compatible native syntax. By examining common and uncommon gotchas we found while migrating Splunk Enterprise, we will make sure you are prepared to run your code in the future generations of Splunk Enterprise!n ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/DEV1173.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEV1173.mp4"
},
{
"Event": ".conf19",
"Title": "DEV1252 - Getting your FIX- Developing an add-on for the Financial Information eXchange Protocol",
"SkillLevel": "Intermediate",
"Track": ["Developer", "Splunk Developer"],
"Products": "Splunk Enterprise",
"Speakers": "Josef Kuepker , Staff Security Specialist, Splunk",
"Industry": "Financial Services",
"Description": "The Financial Information eXchange (FIX) Protocol is one of the most pervasive electronic communications protocols used for real-time exchange of information related to securities transaction and market data. The protocol is used to move massive quantities of money per day.n n With over 1600 fields (tags) and 115 message types, the protocol presents some unique challenges to consider when developing an add-on for Splunk. Come see and discuss the protocol and how Splunk can help you make sense of the data it contains to improve your trading, business analytic, security, fraud, and compliance operations.n ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/DEV1252.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEV1252.mp4"
},
{
"Event": ".conf19",
"Title": "DEV1270 - ‘Git’ Splunk App Management with Visual Studio Code",
"SkillLevel": "Beginner",
"Track": ["Developer", "Splunk Developer"],
"Products": "Splunk Enterprise",
"Speakers": [
"Erica Pescio , Forward Deployed Software Engineer, Splunk",
"Joe Welsh , Sr. Manager, FDSE, Splunk"
],
"Industry": "Not industry specific",
"Description": "How would you like a lightweight, fast, cross-platform source code editor that provides syntax highlighting for all Splunk configuration files? Want to edit your remote Splunk configuration files directly from your laptop or desktop? Ever make changes to your Splunk configuration files you wish you could easily undo? All of this can be done from Microsoft Visual Studio (VS) Code installed locally on your favorite operating system. This hands on lab will teach you how to use VS Code for Splunk App Management, including remote file editing, Splunk application best practices, and using GitLab for configuration file version control.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/DEV1270.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEV1270.mp4"
},
{
"Event": ".conf19",
"Title": "DEV1293 - Check-Out SPL Rehab- A new way to debug your searches",
"SkillLevel": "Intermediate",
"Track": ["Developer", "Splunk Developer"],
"Products": ["Splunk Cloud", "Splunk Developer Cloud", "Splunk Enterprise"],
"Speakers": "James Odom , Head of Service Delivery, Converging Data",
"Industry": "Not industry specific",
"Description": "Wouldn't it be great if SPL had a debug mode?! We think so too, which is why we created SPL Rehab. This new app allows you to step through your search on a per-command basis, visualize key figures from the job inspector and search log, and show you how your overall output is affected! We will also show you how the tool works under the covers and how you can apply some useful dashboarding tricks to your own apps! ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/Dev1293.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEV1293.mp4"
},
{
"Event": ".conf19",
"Title": "DEV1299 - The A to Z of building Add-Ons",
"SkillLevel": "Intermediate",
"Track": ["Developer", "Splunk Developer"],
"Products": "Splunk Enterprise",
"Speakers": "James Odom , Head of Service Delivery, Converging Data",
"Industry": "Not industry specific",
"Description": "Building Splunk add-ons using API's and Python is easy! In fact we reckon it's is so easy that we're going to build one from scratch in less than 20 minutes... LIVE. Come and see whether we manage to pull it off, or whether we fail in front of hundreds of people! You do not need to be a Python expert, however a basic understanding will help.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/DEV1299.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEV1299.mp4"
},
{
"Event": ".conf19",
"Title": "DEV1308 - A Timely Development- I Built a Splunk App To Save Security Analysts Time - And So Can You!",
"SkillLevel": "Intermediate",
"Track": ["Developer", "Splunk Developer"],
"Products": "Splunk Enterprise",
"Speakers": "Joe Kovacic , Founder, Perseus",
"Industry": "Not industry specific",
"Description": "Have you ever had an idea that would improve incident response? I did. I knew I could save security analysts time by providing a tool that enabled analysts to determine if an endpoint had persistent malware present in seconds. However, it would need to integrate seamlessly into their incident response workflow and have a quality user interface. Frankly, that felt like an insurmountable hurdle for someone with little front-end development experience. I was pleasantly surprised to find that even as a solo developer, I was able to create a full-featured Splunk App with an interface that looks like it was designed by someone far more talented. Through a demonstration of my incident response app and a discussion of my experience building it, I’ll show you how Splunk makes it easier and, more importantly, realistic to bring your own ideas to life. I’ll also share a few pain-points I encountered so you can avoid some of the mistakes I made.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/DEV1308.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEV1308.mp4"
},
{
"Event": ".conf19",
"Title": "DEV1317 - Data Stream Processor- Architecture and SDKs",
"SkillLevel": "Intermediate",
"Track": ["Developer", "Splunk Developer"],
"Products": "Splunk Data Fabric Search and Data Stream Processor",
"Speakers": [
"Max Feng , Software Engineer, Splunk",
"Sharon Xie , Sr. Software Engineer, Splunk"
],
"Industry": "Not industry specific",
"Description": "Popular stream processing frameworks (such as Apache Spark Streaming, Apache Flink, and Apache Kafka Streams) make stream processing accessible to developers with language bindings typically in Java, Scala, and Python. These frameworks also include some variant of streaming SQL support to further expand the accessibility of large-scale, low-latency, high-throughput stream processing. What's missing is bringing the world of stream processing to the Business Intelligence user. At Splunk we've built a tool called Splunk Data Stream Processor (DSP) to fill this gap. In this session, Max and Sharon will present the design and architecture of DSP. We will compare it with other stream processing frameworks to show you how DSP allows users to visually author and preview stream processing pipelines and instantly deploy them at scale. We will also present our developer SDKs, allowing third-party custom functions to be developed and integrated for data processing. With its high level abstractions for business users and extensible framework for developers, Data Stream Processor makes stream processing accessible to the widest possible audience. ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/DEV1317.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEV1317.mp4"
},
{
"Event": ".conf19",
"Title": "DEV1377 - Not your parent's Splunk, an SDC journey",
"SkillLevel": "Intermediate",
"Track": ["Developer", "Splunk Developer"],
"Products": ["Splunk Cloud", "Splunk Developer Cloud"],
"Speakers": [
"Kyle Champlin , Senior Product Manager, Splunk",
"Raanan Dagan , Principal SE Architect, Splunk"
],
"Industry": "Technology",
"Description": "Come join two old school Splunkers as we talk about our journey building our first app on Splunk Developer Cloud. We'll discuss the fun parts and the foibles, and hopefully show you that you can teach an old Pony new tricks. ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/DEV1377.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEV1377.mp4"
},
{
"Event": ".conf19",
"Title": "DEV1396 - Get your head into the clouds with Splunk Cloud Platform",
"SkillLevel": "Good for all skill levels",
"Track": ["Developer", "Splunk Developer"],
"Products": "Splunk Developer Cloud",
"Speakers": [
"Andy Nortrup , Sr. Product Manager, Splunk",
"Cecelia Redding , Engineering Manager, Splunk",
"Clif Gordon , Principal Software Engineer, Splunk"
],
"Industry": "Not industry specific",
"Description": "What is Splunk Cloud Platform (SCP), and how can it be leveraged in new ways current Splunk Cloud cannot? In this session you'll learn what Splunk Cloud Platform has to offer, the core concepts to be successful, and how to use Splunk Developer Cloud (SDC) tools to explore the services and features. Getting started couldn't be easier, and we'll show you how to go from sign-up to running in just a few clicks. You'll be dropped right in the middle of Splunk Investigate where you can access the services and features SCP has to offer (like ingest and search and collaboration tools). But that's not all, because using SDC tools you'll see how easy it is to create your own app to utilize the same SCP features as Splunk Investigate for your own use cases. Come join us for this end-to-end look at Splunk Cloud Platform, and get your head into the clouds! ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/DEV1396.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEV1396.mp4"
},
{
"Event": ".conf19",
"Title": "DEV1440 - How Splunkbase identifies, resolves, and reviews incidents using Splunk-Investigate.",
"SkillLevel": "Beginner",
"Track": ["Developer", "Splunk Developer"],
"Products": "Splunk Developer Cloud",
"Speakers": [
"Amr Saad , Engineering Manager, Splunk",
"Heather Hunsinger , Senior Software Engineer, Splunk",
"Matthew Erbs , Senior Software Engineer, Splunk"
],
"Industry": "Technology",
"Description": "As a service that has many different integration points, Splunkbase needs to ensure as much uptime as possible. This means that when an incident occurs the root cause needs to be identified, resolved, reviewed and communicated to all relevant parties in a timely manner. Fortunately, Splunk>Investigate has served us very well in achieving these objectives. In this session, we’ll demonstrate how the use of the Splunk>Investigate app on Splunk Cloud Platform (SCP) enables teams to access the same data pool with appropriate authorization to collaborate using shared workbooks. This workflow enables teams to quickly reach a solution when an incident occurs.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/DEV1440.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEV1440.mp4"
},
{
"Event": ".conf19",
"Title": "DEV1476 - Build Apps Fast with SDC Developer Tools",
"SkillLevel": "Intermediate",
"Track": ["Developer", "Splunk Developer"],
"Products": ["AI/ML", "Splunk Developer Cloud"],
"Speakers": [
"Eric Cheng , Senior Software Engineer, Splunk",
"Tedd Hellmann , Sr. Product Manager, Splunk"
],
"Industry": "Not industry specific",
"Description": "Learn how to build powerful apps with the Splunk Developer Cloud. ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/DEV1476.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEV1476.mp4"
},
{
"Event": ".conf19",
"Title": "DEV1667 - Converting a Traditional Splunk App to a Splunk Cloud App with Splunk Developer Cloud",
"SkillLevel": "Intermediate",
"Track": ["Developer", "Splunk Developer"],
"Products": ["Splunk Developer Cloud", "Splunk Enterprise"],
"Speakers": ["Ashish Bhutiani , CEO, Function1", "Kevin Chu , Function1"],
"Industry": "Not industry specific",
"Description": "Unveiled at .conf2018, Splunk Developer Cloud (SDC) gives developers the ability to integrate Splunk data services into their own applications. If you’ve been curious about getting started with SDC, this session is for you. Attendees will discover how to convert a traditional Splunk App to an SDC App, eliminating potential infrastructure resource roadblocks, leveraging more flexible scaling options, and building better visualizations with a modern, React-based framework. We'll also take a deep dive into the differences in the application design and development process between a traditional Splunk App and SDC as we walk you through our internal process of converting one of our homegrown Splunk Apps.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/DEV1667.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEV1667.mp4"
},
{
"Event": ".conf19",
"Title": "DEV1881 - Insider Guidance For Approaching Splunk Cloud Vetting Process",
"SkillLevel": "Good for all skill levels",
"Track": ["Developer", "Splunk Developer"],
"Products": "Splunk Cloud",
"Speakers": [
"Samuel Ni , Principal Software Engineer, Splunk",
"Yinqing Hao , Software engineer, Splunk"
],
"Industry": "Not industry specific",
"Description": "If you are a customer, when you want an app installed in Splunk Cloud, it is required for the app to pass cloud vetting process. Why does Splunk enforce this? What is in it for you as our customer? Who triggers cloud vetting process for an app and how are cloud vetting requests prioritized? If you are an app developer, it is frustrating receiving messages from customers saying that the app that you developed fails Splunk cloud vetting, and they want you to help to fix. How to fix? How to develop an app that has the biggest chance of passing cloud vetting? What are the common failures that Splunk cloud vetting engineers saw in history and what are the best practices? Come to this session, you will get answers to all the questions above. ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/DEV1881.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEV1881.mp4"
},
{
"Event": ".conf19",
"Title": "DEV2165 - Deep Dive on The New Dashboarding & Content Export Experience",
"SkillLevel": "Intermediate",
"Track": ["Developer", "Splunk Developer"],
"Products": ["Splunk Cloud", "Splunk Developer Cloud", "Splunk Enterprise"],
"Speakers": [
"Michael Luo , Principal Software Engineer, Splunk",
"Yuxiang Kou , Senior Software Engineer, Splunk"
],
"Industry": "Not industry specific",
"Description": "This session provides detailed guidance on how to use the new dashboard framework into Splunk apps. It first goes over the basic get started tutorial, which helps developers to build a dashboard in just a few minutes. Then it dives deep into the overall architecture, technology stacks, and individual components that can be customized, including layouts, visualizations, data sources, inputs, event handlers. By attending this session, Splunk app developers will be able to integrate dashboards into the apps flexibly and reliably. This session will also walk through the best practices that can help developers to build the optimal dashboards. This session is targeted to both new Splunk app developers and existing Splunk app developers. For people who already know about the existing Splunk technology stack such as Backbone, SimpleXML, SplunkJS, this session will also go through how to migrate to the new framework. As a bonus, this session will also talk about how to export dashboards as beautiful images and PDFs that 100% matches the original ones! ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/DEV2165.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEV2165.mp4"
},
{
"Event": ".conf19",
"Title": "DEV2178 - Build your own custom data visualization on dashboard",
"SkillLevel": "Advanced",
"Track": ["Developer", "Splunk Developer"],
"Products": ["Splunk Developer Cloud", "Splunk Enterprise"],
"Speakers": [
"Pete Peterson , Principal Software Engineer, Splunk",
"Xianlin Hu , Principal Software Engineer, Splunk"
],
"Industry": "Not industry specific",
"Description": "Ever had the necessity to have fine-grain control over visualizations on your Splunk dashboards? This talk will show you everything you need to know about how to build your own custom data visualization experience. Work through real-world examples by customizing the very popular Buttercup games dashboard. By the end of this talk, you will be inspired to have your dashboard with your own visualizations and share them with the Splunk community. ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/DEV2178.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEV2178.mp4"
},
{
"Event": ".conf19",
"Title": "DEV2236 - Introduction to Collect Service",
"SkillLevel": "Beginner",
"Track": ["Developer", "Splunk Developer"],
"Products": [
"Splunk Data Fabric Search and Data Stream Processor",
"Splunk Developer Cloud"
],
"Speakers": [
"Jove Zhong , Director, Engineering, Splunk",
"Poornima Devaraj , Technical Product Manager, Splunk"
],
"Industry": "Not industry specific",
"Description": "Collect Service is a new scalable method with high availability to collect data for Splunk Cloud Platform or Splunk Enterprise with Data Stream Processor(DSP). This session will cover the basic principles to show you how the Collect Service operates and why you need to use it, how the service is different from modular inputs, and how to leverage Collect Service’s REST API to automate data collection jobs efficiently.n ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/Dev2236.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEV2236.mp4"
},
{
"Event": ".conf19",
"Title": "DEV2518 - Triggers & Alerts in the Splunk Cloud Platform",
"Track": ["Developer", "Splunk Developer"],
"Speakers": [
"Declan Shanaghy , Architect Developer Platform, Splunk",
"Miranda Luna , Product Management, Splunk"
],
"Description": "In the new Splunk Cloud Platform, we’re reimagining the way we enable monitoring and alerting. Configure triggers to identify changes and anomalies in your data as they occur and determine the right action(s) that should be taken as a result – email, Slack, VictorOps, etc. Leverage machine learning to bring your attention to the right insights and roll that back into your core monitoring strategy. Come to this session to learn more about both the long-term vision and what’s immediately available. ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/DEV2518.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEV2518.mp4"
},
{
"Event": ".conf19",
"Title": "DEV3288 - DataPaaS – Simplifying Complexity with Automation and CI-CD",
"Track": "Developer"
},
{
"Event": ".conf19",
"Title": "DEVS4G2287 - Splunking the 2018 Midterm Election!",
"SkillLevel": "Advanced",
"Track": ["Developer", "Splunk Developer"],
"Products": "Splunk Enterprise",
"Speakers": [
"Corey Marshall , Director, Splunk",
"Satoshi Kawasaki , Splunk for Good Ninja, Splunk"
],
"Industry": ["Non-Profit", "Public Sector"],
"Description": "The Federal Election Commission (FEC) is an independent regulatory agency whose purpose is to enforce campaign finance law in US federal elections. The FEC provides a REST API to query all campaign data of every candidate. By collecting and analyzing the direct and indirect (Super PAC) contributions, Splunk can show the relative influence of each candidate of the midterm. Also learn how Splunk powers the Splunk for Good midterm website using Splunk's REST API, HEC, and Amazon S3 hosting. This talk is an update of the 2016 Presidential Election talk from .conf16.n ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/DEVS4G2287.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/DEVS4G2287.mp4"
},
{
"Event": ".conf19",
"Title": "FN1003 - Fields, Indexed Tokens and You",
"SkillLevel": "Advanced",
"Track": "Foundations/Platform",
"Products": ["Splunk Cloud", "Splunk Enterprise"],
"Industry": "Not industry specific",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1003.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/summit/FN1003.mp4"
},
{
"Event": ".conf19",
"Title": "FN1045 - Saving Thousands of Hours Per Month at Paychex with Robotic Process Automation (RPA) and Splunk",
"SkillLevel": "Good for all skill levels",
"Track": "Foundations/Platform",
"Products": "Splunk Enterprise",
"Speakers": "Brian Dudiak , Manager, RPA Program, Paychex",
"Industry": "Not industry specific",
"Description": "Robotic Process Automation (RPA) allowed Paychex to quickly eliminate over 18,000 hours of manual effort annually with only the first workflow, which was developed from start to finish in one month. Does your company have manual processes that could easily be automated through RPA efforts? If so, you could be saving thousands of hours and upwards of millions of dollars. In this session, we will show you how you can use RPA to deliver ROI and business value to your business units and executive-level management, and how Splunk can help monitor robot and workflow health and errors in real-time to developers. ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1045.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/FN1045.mp4"
},
{
"Event": ".conf19",
"Title": "FN1054 - Best Practices and Better Practices for Admins",
"SkillLevel": "Advanced",
"Track": "Foundations/Platform",
"Products": ["Splunk Cloud", "Splunk Enterprise"],
"Industry": "Not industry specific",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1054.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/FN1054.mp4"
},
{
"Event": ".conf19",
"Title": "FN1061 - Lesser Known Search Commands",
"SkillLevel": "Good for all skill levels",
"Track": "Foundations/Platform",
"Products": "Splunk Enterprise",
"Speakers": "Kyle Smith , Integration Developer, Aplura, LLC",
"Industry": "Not industry specific",
"Description": "Come learn some lesser known search commands! Amaze your co-workers, dazzle employers, learn something new! We will cover various commands that you might know about, but have never tried! ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1061.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/FN1061.mp4"
},
{
"Event": ".conf19",
"Title": "FN1081 - Index Impasse- Limiting Data Access on a Per Event Basis",
"SkillLevel": "Advanced",
"Track": "Foundations/Platform",
"Products": "Splunk Enterprise",
"Speakers": [
"Jeff Champagne , Director, Global SE Programs, Splunk",
"Yisroel Bongart , Senior Sales Engineer, Splunk"
],
"Industry": "Not industry specific",
"Description": "Is managing your growing list of indexes like herding cattle? Is your Master Node struggling against a stampede of buckets? Are you ducking bullets to satisfy data access requirements at the expense of usability or search performance? This session will demonstrate the advanced, role-based data access approach being used by several large Splunk customers. You will learn alternative methods to satisfy complex data access requirements without having to allocate hundreds or thousands of indexes. This method will allow you to focus on usability and search performance as your primary criteria for designing and managing your indexing strategy.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1081.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/FN1081.mp4"
},
{
"Event": ".conf19",
"Title": "FN1096 - Public Data Exploration With Splunk",
"SkillLevel": "Intermediate",
"Track": "Foundations/Platform",
"Products": "Splunk Enterprise",
"Speakers": "Phil Meyerson , Security Analyst, EFSI @NASA",
"Industry": "Not industry specific",
"Description": "Splunk is known as an excellent platform for exploring machine-generated data. We'll explore how the platform can be used on open datasets to search for insight on real world issues such as election participation, public health, and other topics. Takeaways will include considerations for data acquisition and ingest, domain expertise, and successes and challenges from the perspective of a civic-minded individual. Lets see how far Splunk can take us!",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1096.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/FN1096.mp4"
},
{
"Event": ".conf19",
"Title": "FN1097 - App Sorcery 2- Building Better Splunk Apps with Best Practice",
"SkillLevel": "Good for all skill levels",
"Track": "Foundations/Platform",
"Products": ["Splunk Cloud", "Splunk Enterprise"],
"Speakers": "Matt Eglin , Senior Professional Services Consultant, Splunk",
"Industry": "Not industry specific",
"Description": "Let's build a Splunk App and take it further! What makes a Splunk App tick? How do we build them? How do they make your Splunk life easier? How do they work in clusters? How can your app be approved for Splunk Cloud deployments, and how can your tried-and-tested, on-premises apps be migrated? All these questions will be answered in this session with real world examples direct from Splunk Professional Services. This is about Splunk app creation, from barebones to enterprise deployment.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1097.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/FN1097.mp4"
},
{
"Event": ".conf19",
"Title": "FN1098 - Harnessing Natural Curiosity for exploring data",
"SkillLevel": "Intermediate",
"Track": "Foundations/Platform",
"Products": ["Splunk Cloud", "Splunk Enterprise"],
"Speakers": "Kam Amir , Cloud Architect, Splunk",
"Industry": "Not industry specific",
"Description": "In a world full of AI, wouldn't it be nice to foster some Natural Curiosity? Coming from a Humanities background, I tend to look at data a little differently than most engineers and data scientists. Using Splunk I'm able to freely navigate through the data and explore different use cases. ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1098.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/FN1098.mp4"
},
{
"Event": ".conf19",
"Title": "FN1137 - Forecasting Disk Usage with Machine Learning – So easy, even a cave-person can do it!",
"SkillLevel": "Intermediate",
"Track": "Foundations/Platform",
"Products": [
"AI/ML",
"Splunk Enterprise",
"Splunk Machine Learning Toolkit"
],
"Speakers": "Steve Koelpin , Splunk Advisor, TransUnion",
"Industry": "Not industry specific",
"Description": "This presentation will walk users through how to use the machine learning toolkit to accurately forecast disk usage across their entire environment, giving them the exact day, month, and year when a server will run out of disk space. No more being awakened at 3:00 am for a bridge call due to a drive running out of disk. This process also can be used by capacity planning teams to select a future date and get a clear view of capacity across the business for all servers. Using machine learning to remove tech debt in an organization does not require a data scientist. You can do it if you have the right server metrics and the MLTK installed. ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1137.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/FN1137.mp4"
},
{
"Event": ".conf19",
"Title": "FN1172 - Splunk Python 3 Migration- What it Means for Your Deployment & Apps",
"SkillLevel": "Good for all skill levels",
"Track": "Foundations/Platform",
"Products": ["Splunk Cloud", "Splunk Enterprise"],
"Speakers": "Aditya Tammana , Product Manager, Splunk",
"Industry": "Not industry specific",
"Description": "Stressed about Python 2.7 end-of-life? Terrified about how your Splunk deployment or apps will be impacted? Don’t be...we got you covered. It’s out with the old and in with the new, because Splunk is migrating to Python 3.7. As part of this migration, Splunk is also removing a handful of deprecated features. What’s the best way to learn if and what is changing for your Splunk? This session! Learn how to identify what’s impacted in your deployment or app and let us share our Python migration best practices. Soon, you too will be able to take advantage of the benefits of Python 3.n ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1172.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/FN1172.mp4"
},
{
"Event": ".conf19",
"Title": "FN1190 - Running Splunk in an Air-gapped environment ",
"SkillLevel": "Intermediate",
"Track": "Foundations/Platform",
"Products": ["Phantom", "Splunk Enterprise", "Splunk Enterprise Security"],
"Speakers": "Steve Schohn , Staff Sales Engineer, Splunk",
"Industry": "Public Sector",
"Description": "Many government agencies and for-profit companies require that you run Splunk on a network disconnected from the outside Internet. This presents many challenges, including how to cross air gaps and one-way transfers, how to operate indexers in an air-gapped environment, and how to automate backwards. This session will cover lessons learned from a variety of air-gapped deployments.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1190.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/FN1190.mp4"
},
{
"Event": ".conf19",
"Title": "FN1200 - Data Onboarding Methodologies",
"SkillLevel": "Advanced",
"Track": "Foundations/Platform",
"Products": ["Splunk Enterprise", "Splunk Enterprise Security"],
"Industry": "Not industry specific",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1200.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/summit/FN1200.mp4"
},
{
"Event": ".conf19",
"Title": "FN1206 - The path to operational enlightenment. An introduction to wire data with Splunk Stream.",
"SkillLevel": "Good for all skill levels",
"Track": "Foundations/Platform",
"Products": [
"Splunk Enterprise",
"Splunk Enterprise Security",
"Splunk IT Service Intelligence"
],
"Speakers": [
"Simon O’Brien , Principal Sales Engineer, Splunk",
"Vinu Alazath , Engineer, Splunk"
],
"Industry": "Not industry specific",
"Description": "Have you ever wondered what Joe meant when he referred to 'Wire Data'? Today, you'll see the applicability of wire data in your organization, and you'll be amazed. Solve fraud, cybersecurity, ops, and business challenges, all with one single source of data. Wire data is the information that passes over computer and telecommunications networks to define communications between client and server devices. It is the result of decoding wire and transport protocols containing the bi-directional data payload. We will cover the use of wire data to solve security, IT operations, and business use cases, and see how the Splunk Stream platform is easily integrated into your existing data flows. The Splunk Essentials for Wire Data app from Splunkbase will be used to showcase dozens of examples using wire data to solve common business and technical issues. We will cover how to deploy and configure Splunk Stream in a distributed environment, including a demonstration.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1206.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/FN1206.mp4"
},
{
"Event": ".conf19",
"Title": "FN1213 - The Two Most Common Machine Learning Solutions Everyone Needs to Know",
"SkillLevel": "Intermediate",
"Track": "Foundations/Platform",
"Products": [
"AI/ML",
"Splunk Enterprise",
"Splunk Machine Learning Toolkit"
],
"Speakers": [
"Amir Malekpour , Principal Software Engineer, Machine Learning, Splunk",
"Eurus Kim , Staff ML Architect, Splunk"
],
"Industry": "Not industry specific",
"Description": "Tired of relying on static threshold-based alerts that don’t seem to provide much value? Do you typically end up finding outliers in your data by staring at lines on your dashboards? We are told machine learning is going make alerts and dashboards smarter, but how? We will help demystify machine learning and provide a practical guide to apply machine learning techniques for numeric outlier detection, and forecasting to make alerts and dashboards smarter and easier to use for actionable results. We will show you the basics of how you can understand your data, get them ready for machine learning, and get the machine to start working for you! You will leave the session beginning to think like a data scientist and knowing how to apply purpose-driven machine learning to your searches in Splunk! ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1213.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/FN1213.mp4"
},
{
"Event": ".conf19",
"Title": "FN1263 - Harnessing the Power of Splunk and Google Cloud- Deploy, Ingest, and Beyond",
"SkillLevel": "Good for all skill levels",
"Track": "Foundations/Platform",
"Products": "Splunk Enterprise",
"Speakers": [
"Alex Cain , Sr. Product Manager | Getting Data In, Splunk",
"Roy Arsan , Cloud Partner Engineer, Google"
],
"Industry": "Not industry specific",
"Description": "Want to run Splunk on Google Cloud Platform (GCP)? Have a GCP environment you aren’t monitoring in Splunk? In this joint Google & Splunk session, you’ll learn how to architect, build and scale a Splunk environment on GCP according to best practices for availability, performance and cost. We’ll walk you through the setup of a real-world Splunk environment on GCP, as well as the various options available for ingesting valuable Google Cloud data in any Splunk environment. We’ll leverage streaming services from Google Cloud like Pub/Sub and Dataflow to capture in near real-time operational, audit, billing, inventory data, and more. We’ll then demonstrate how to analyze this wealth of data and get immediate insights for several use cases from IT Ops to Security.n ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1263.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/FN1263.mp4"
},
{
"Event": ".conf19",
"Title": "FN1266 - Metrics- Past, Present, and Future",
"SkillLevel": "Beginner",
"Track": "Foundations/Platform",
"Products": ["Splunk Cloud", "Splunk Enterprise"],
"Speakers": [
"ILAM Siva , Product Management, Splunk",
"Steve Zhang , Chief Scientist, Splunk"
],
"Industry": "Not industry specific",
"Description": "Curious about how to efficiently onboard and analyze metric data in Splunk? This talk will teach you the basic design and best practices for Splunk's Metric Indexes. Since they were introduced two years ago, Splunk's metric capabilities have quickly evolved. Now there is support for rollups, richer logs-to-metrics conversion capabilities, and a more efficient data representation formats. We also will discuss planned future enhancements and how you may best prepare for them today.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1266.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/FN1266.mp4"
},
{
"Event": ".conf19",
"Title": "FN1288 - Migrating Splunk to AWS- lessons learned (or how recover from being a victim of your own success)",
"SkillLevel": "Good for all skill levels",
"Track": "Foundations/Platform",
"Products": ["Splunk Enterprise", "Splunk Enterprise Security"],
"Speakers": [
"Igor Alekseev , Amazon Web Services",
"Shane Newman , RedHat, Inc. "
],
"Industry": "Not industry specific",
"Description": "At Red Hat, we’ve been using Splunk since 2014. Since then, usage has grown significantly, from utilizing Splunk Enterprise, to introducing Splunk Enterprise Security, all the way to having more than 600 TB of data residing in Splunk, with the daily data ingestion expected to grow beyond 2.x terabytes per day. At this level, the on-premises infrastructure was reaching its limits, so we started to look for alternatives. Our first reaction was, 'Let’s throw some more hardware at it,' but we quickly came to the realization that if we were to continue on the path of implementing traditional infrastructure we wouldn’t solve our scalability problem. What did we do? Attend this talk to find out. We’ll describe our journey as we moved our Splunk environment to Amazon Web Services (AWS), share details about the architecture, review data migration tactics, and overview some of the pain and lessons we learned along the way.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1288.pdf"
},
{
"Event": ".conf19",
"Title": "FN1298 - Driving Adoption of Splunk in Your Enterprise",
"SkillLevel": "Good for all skill levels",
"Track": "Foundations/Platform",
"Products": ["Splunk Cloud", "Splunk Enterprise"],
"Speakers": [
"Chris Liddy , Director of Application Development, FIS",
"Matt Collicoat , Head of Global Payments Innovation and Strategy, FIS"
],
"Industry": "Not industry specific",
"Description": "So, you have Splunk in your enterprise but people aren't using it. What do you do? After working with many organizations in financial services, we have heard the response 'yes, we use Splunk.' However, there is a large gap between the organizations that have a Splunk license and those that are truly using Splunk. What is the key to successful adoption of Splunk as an enterprise tool? In this session hear how FIS has driven an uptakein Splunk adoption across multiple business lines and external clients. Using Splunk, FIS have supported off-prescription solutions including system parameter inquiry, operator fraud, financial invoicing, client conference data analytics, staff resource allocations, and status reporting.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1298.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/FN1298.mp4"
},
{
"Event": ".conf19",
"Title": "FN1300 - SPLendid uses for SPL in SPLunk",
"SkillLevel": "Intermediate",
"Track": "Foundations/Platform",
"Products": ["Splunk Cloud", "Splunk Enterprise"],
"Industry": "Not industry specific",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1300.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/summit/FN1300.mp4"
},
{
"Event": ".conf19",
"Title": "FN1315 - Cover Your Assets- Protect Your Knowledge Objects from Yourself (and Others) - A Paychex story",
"SkillLevel": "Good for all skill levels",
"Track": "Foundations/Platform",
"Products": [
"Splunk Enterprise",
"Splunk IT Service Intelligence",
"Splunk Machine Learning Toolkit"
],
"Speakers": [
"Dustin Marling , Splunk App Developer, Paychex",
"Eric Favreau , Service Health Operations Analyst, Paychex"
],
"Industry": "Not industry specific",
"Description": "'Did we just lose ALL our knowledge objects? Do you know how much time and energy that was?' After a destructive resync, Paychex lost two months of its knowledge object creations/modifications. We learned to be prepared if it were to ever happen again. How? It's easier than you might think, and you don't have to be an admin. You’ll learn how to proactively save your work (dashboards, reports, data models, MLTK experiments, ITSI glass tables, macros, views, etc.) and audit changes when they occur. You will leave the session knowing how to manage the ever-increasing amount of things you create. You'll also have solutions that can save you time and effort from having to recreate lost/modified objects, including how to restore service faster. You also will come away with peace of mind knowing that you can take control of safeguarding and protecting your work, thereby covering your assets when a disaster happens.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1315.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/FN1315.mp4"
},
{
"Event": ".conf19",
"Title": "FN1325 - DB Connect- Automating the H-E-Double Hockey Sticks Out of it",
"SkillLevel": "Intermediate",
"Track": "Foundations/Platform",
"Products": [
"Splunk Cloud",
"Splunk Enterprise",
"Splunk Enterprise Security"
],
"Speakers": "Ryan Moss , Principal Security Engineer, Verizon",
"Industry": "Not industry specific",
"Description": "Have you ever thought to yourself, 'Man, I love manually inputting new connections and inputs in DB Connect. It makes my life so much more fulfilling!' Yeah, neither have we. We will show you some simple ways to automate this process by utilizing cron schedules and bash scripts. We will focus on the technical side of automating DB Connect using real world examples to show you how we were able to overcome this hurdle, and how you can become the next Ninja Warrior of DB Connect.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1325.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/FN1325.mp4"
},
{
"Event": ".conf19",
"Title": "FN1328 - Show and Tell- Prescriptive Use Cases for Azure and Office 365",
"SkillLevel": "Intermediate",
"Track": "Foundations/Platform",
"Products": [
"Splunk Enterprise",
"Splunk Enterprise Security",
"Splunk Machine Learning Toolkit"
],
"Speakers": [
"Jason Conger , Solution Architect, Splunk",
"Ry Lait , Senior Sales Engineer, Splunk"
],
"Industry": "Not industry specific",
"Description": "Let's face it, sometimes you don't know what you don't know. With vast amounts of cloud data coming in at cloud-speed, it can be difficult to see through the noise and know what to look for. Are malicious adversaries attempting to comprise the environment? Is my environment under- or over-provisioned? Do I have an insider possibly exfiltrating company data? Are employees actually using the services? What is all of this costing per service, department, business unit? Don't worry, we will help you figure all this out in a prescriptive manner by showcasing these and other use cases. Then, we will show you the 'how' by exposing the searches, the data needed, and showing you how to onboard that data. You will walk away with use cases that can be implemented immediately in your own environment.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1328.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/FN1328.mp4"
},
{
"Event": ".conf19",
"Title": "FN1350 - Splunk Performance- making hardware and platform choices",
"SkillLevel": "Intermediate",
"Track": "Foundations/Platform",
"Products": [
"Splunk Enterprise",
"Splunk Enterprise Security",
"Splunk IT Service Intelligence"
],
"Speakers": [
"Brian Wooden , Director, Sales Engineering GSA, Splunk",
"Simeon Yep , AVP, Sales Engineering Global Partners, Splunk"
],
"Industry": "Not industry specific",
"Description": "Splunk Enterprise is powerful. Don't cheat yourself of its power. When making decisions as to how to expand or standup Splunk’s footprint, you need to know what matters when making platform decisions. Considering compute, storage, virtualization, cloud infrastructure is a lot. There isn’t one place to review all the options you have. We will share the Splunk way to think of performance and how it relates to the underlying system resources. This means getting into the real nuts and bolts of performance. If you want to know how search affects indexing and what resources get consumed, this is the session to attend. If you also want to know how it affects what you purchase as a platform choice, this also is the session to attend. We also will review how partners have built architectures to simplify this process.",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1350.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/FN1350.mp4"
},
{
"Event": ".conf19",
"Title": "FN1352 - Blockchain is entering the enterprise, see what Splunk is doing and how you can leverage it.",
"SkillLevel": "Intermediate",
"Track": "Foundations/Platform",
"Products": "Splunk Enterprise",
"Speakers": [
"Jeff Wu , Senior Product Manager, Blockchain, Splunk",
"Nate McKervey , Head of Blockchain and DLT, Splunk"
],
"Industry": "Not industry specific",
"Description": "Blockchain applications and infrastructure are new, complex, and generate a variety of data. Splunk is a perfect match for ingesting, analyzing, and gaining insights from data on-chain, off-chain, and even cross-chain. Organizations can now monitor the health, performance, and security of blockchain infrastructure as well gain insights by analyzing transactions and correlate with external data. In this session you will get to see it all in action (live demos!) and even participate yourself, there might even be some free cryptocurrency given away. ",
"SlidesUrl": "https://conf.splunk.com/files/2019/slides/FN1352.pdf",
"VideoUrl": "https://conf.splunk.com/files/2019/recordings/FN1352.mp4"
},
{