Questions tagged [kibana]

Kibana revolutionizes the way you explore and present your data, empowering you to uncover unique insights and effectively communicate trends. With its exceptional tools for searching, crafting visualizations, and seamlessly merging these visuals into comprehensive dashboards, Kibana is undeniably a game-changer in data exploration and visualization.

Encountered an issue while trying to import JSON data into elastic using logstash

Having recently ventured into the realm of ELK stack, I find myself challenged with the task of importing single line JSON files to Elasticsearch using Logstach. Despite my efforts, nothing seems to appear at Elasticsearch (10.10.20.13:9200/monitor/_search ...

Fetching DataStream entries in Elasticsearch utilizing python's API

When working in Kibana dev tools, I encountered an issue. While using the API call GET /_data_stream/, I successfully obtained a list of DataStreams. However, when attempting to retrieve this information using the Elasticsearch Python API, I hit a roadbl ...

``What methods can I use to split JSON data using logstash and visualize it in Kibana?

I am facing an issue with parsing a log file containing multiple lines of JSON data. One line from the log looks like this: {"name":"sampleApplicationName","hostname":"sampleHostName","pid":000000,"AppModule":"sampleAppModuleName","msg":"testMessage","tim ...

kibana is throwing an error message that says it was expecting an end object but instead received a field name, potentially indicating an issue with

While attempting to create a complex boolean query with a fuzzy must requirement and multiple should requirements, including one with a wildcard, I am encountering an error message. Despite making adjustments to the syntax, I have been unable to resolve th ...

Fixing a broken field in Kibana through analysis

I am utilizing an ELK stack to ingest structured JSON logs from filebeat, with examples like these: {"what": "Connected to proxy service", "who": "proxy.service", "when": "03.02.2016 13:29:51", "severity": "DEBUG", "more": {"host": "127.0.0.1", "port": 20 ...

The Access-Control-Allow-Headers in preflight response does not permit the kbn-version request header field

I've configured the Kibana settings in a yml file as shown below: server.cors: true server.cors.origin: "*" server.cors.credentials: true server.cors.methods: "GET, POST, PUT, DELETE, OPTIONS, HEAD" server.cors.headers: "Origin, X-Requested-With, Con ...

A Guide on Using Multiple Clauses to Filter Data in Elasticsearch

I'm working on filtering a data set based on two conditions. The goal is to retrieve records that satisfy either condition 1 (containing A and B) or condition 2 (containing A and C), with wildcards included. For instance, consider the following table ...

When importing JSON files into Elasticsearch, make sure to retain previous values instead of overwriting them

I am new to using Elasticsearch and Kibana, so I appreciate your patience as I navigate through this. Instead of Logstash, I am utilizing JSON files to import the data I require. Essentially, Kibana is being used to monitor changes in values within a MySQL ...

Elasticsearch has encountered an issue with the query_shard_exception; specifically, the error states that the [has_parent] join

Every time I attempt to query the has_parent/has_child scenario, I keep receiving this response: Issue: "[has_parent] no join field has been configured" I am anticipating the child objects to be returned ...

Utilize the power of Elasticsearch in Node.js by executing a direct query using the Node

Searching with the NodeJS Elasticsearch library is possible (https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/quick-start.html). Is it feasible to run raw queries on indices? Can I execute a command like this: PUT index { "se ...

Encountering TOO_MANY_REDIRECTS issue while attempting to iFrame a Kibana dashboard with cookies

I'm currently working on integrating password-protected Kibana dashboards into an iFrame within my Node-powered Express application, as discussed in this forum thread. The Kibana setup involves X-Pack for protection and mandates user login to access v ...

A Beginner's Guide to Understanding Elasticsearch, Logstash, and Kibana without Technical Jargon

I am confused. I understand that Logstash allows us to input csv/log files and apply filters using separators and columns. The output is then sent to elasticsearch for use with Kibana. However, I'm unsure about whether or not we need to specify an ind ...

Designing personalized visualizations using elasticsearch

After setting up ELK tools, I have a desire to extract data from Elasticsearch and generate my own graphs without relying on Kibana. I've heard about tools like elasticsearch.js, but I'm unsure how to begin using it. What steps should I take in o ...