Skip to main content

SPLUNK

                                             

I have came across 'Splunk' in google, where I got the below collective informations, which may help for you. 

Some saying in a definition format as it is used for monitoring, searching, analysing and visualising the machine-generated data in real time. 

Some saying this as "Google for logs"

So, SPLUNK is a software platform to search, analyse and visualise the machine-generated data, which is none other than the log file which is gathered from the websites, applications, sensors, devices etc..

Why we go for SPLUNK:

Generally machine data are complex to understand, in an unstructured format and ot suitable for making analysis / visualisation!!!

  • Splunk allows you to accept any data formats like .csv, json, log formats etc.
  • Splunk performs capturing, indexing, and correlating the real time data in a searchable container and produces graphs, alerts, dashboards and visualisations. 
  • It provides easy to access data over the whole organisation for easy diagnostics and solutions to various business problems.

In simple, Splunk make up your IT infrastructure and business.

See you on next post, about splunk dashboard and details!!!




Comments

Popular posts from this blog

Strings

Strings are used in Python to record text information, such as names.  Strings in Python are actually a sequence, which basically means Python keeps track of every element in the string as a sequence.  For example, Python understands the string "hello' to be a sequence of letters in a specific order. This means we will be able to use indexing to grab particular letters (like the first letter, or the last letter). This idea of a sequence is an important one in Python and we will touch upon it later on in the future. In this blog we'll learn about the following: Creating Strings Printing Strings String Methods String Indexing String Slicing String Properties Creating String: 1] Strings can be created as below using single quotes or double quotes strVar = 'Python' strVar1 = "python" 2] A multi-line string can declared with triple quotes as below: strVar2 = """python language is easy to learn""" 3] A