All Questions
Tagged with elasticsearch json
1,309 questions
0
votes
0
answers
85
views
unable to use elastic search using java
I am trying to connect my java application to Amazon Elastic Search Instance and work on product search but I have been failing for a few days finally asking you guys if you can help.
My Elastic ...
1
vote
0
answers
65
views
Parsing JSON String from Kafka topics to elastic search
I'm using Strimzi in my k8s cluster and io.debezium.connector.postgresql.PostgresConnector as source connector to use as CDC from postgres to kafka topics, then using io.confluent.connect....
0
votes
1
answer
199
views
Elasticsearch to Slack integration: Pulling specific fields
I am currently trying to develop a slack channel for the use of alerting whenever I have a specific set of alerts that come in. I have been successful in getting a notification sent to the channel ...
0
votes
0
answers
27
views
Automatically parse xml tags into fields in logstash
Let's say I have a XML of this structure:
<root>
<person>
<name>John Doe</name>
<age>30</age>
<address>
<city>New York</city>
...
0
votes
1
answer
260
views
Parsing Filebeat logs to send to Elasticsearch
Is there any existing way or tool that can parse the Filebeat logs (var/log/filebeat/filebeat-<date>.ndjson) before sending them to Elastisearch? I'm using version 8.8.0 for both Filebeat and ES....
-1
votes
1
answer
306
views
Save JSON documents in ElasticSearch using ElasticsearchRepository (Java/Spring-data)
I am trying to store entities containing (only) a json String in ElasticSearch, but want the fields in the json document to be stored individually in Elastic and NOT as a single String.
I am using the ...
0
votes
0
answers
201
views
elastic agent: Split the multiline json(array of json object) from message field to separate fields
I need to use elastic agent's custom Logs integration which is essentially filebeat to push my json data into elastic search, but I'm having trouble decoding my json fields into separate fields ...
1
vote
0
answers
78
views
Extract data from api to data frame in R
First, I am very new to api stuff, so maybe the solution is simple.
I have access to the Danish Erhvervsstyrelsen's api for enterprise data (CVR information from virk.dk). They use elastic.
The ...
0
votes
0
answers
100
views
Incorrect elasticsearch field mapping causes tons of logstash errors (failed to parse field [abc] of type [text])
I've been having an issue on my logstash node where about 5 log sources (linux servers) are generating about 30 logstash-plain.log files every day, each with about 20-30k lines.
About 99% of these ...
2
votes
2
answers
47
views
Elasticsearch aggregation with .keyword does not returns the results
I have an Elasticsearch index, part of its mapping is as follows:
...
},
"entity": {
"properties": {
"DateTime"...
0
votes
1
answer
27
views
logstash mutate json object
How can I use logstash mutate filter to convert from
{"a":{"b":"str1", "c":"str2",...}}
to
{"b":"str1", "c":"str2&...
1
vote
0
answers
26
views
How to connect points belonging to the same ship in ElasticSearch
I have an API which has ship data and I'm extracting the data using Python for 1 hour. The data I extract is in form given below
[{'Timestamp': '2024-04-30T22:06:27.124502+00:00',
'ShipId': ...
2
votes
1
answer
248
views
Elasticsearch Go Client Error: "Invalid JSON format: EOF" when indexing documents in Middleware [duplicate]
I'm developing a middleware in Go that intercepts HTTP requests, reads JSON data from the request body, and indexes it as a document in Elasticsearch based on this documentation.
However, although the ...
0
votes
1
answer
37
views
Aggregating multiple fields in an elesticsearch object
I have documents in the following format
{
"reference": "0001",
"order_outlet": "Brighton",
"order_amount": 1000,
"status": &...
1
vote
1
answer
468
views
Elasticsearch field boosting with knn search
I want to implement a knn search in elastic on a particular field (on an ipython notebook), and my data also contains ratings (from 1 to 5), which I also want to be taken into consideration, and hence ...