Questions tagged [elasticsearch-opendistro]

An Apache 2.0-licensed distribution of Elasticsearch enhanced with enterprise security, alerting, SQL, and more. Links:

https://opendistro.github.io/for-elasticsearch

https://www.elastic.co/products/elasticsearch

This solution is provided by AWS with a "fork" of elasticsearch engine (more detail on this post)

134 questions
2
votes
0 answers

Opendistro Kibana: get user information (like roles) in a plugin

I am developing a Kibana plugin displaying a list of items. Some of these items needs to be highlighted if created by a certain team. The idea is to attribute a specific role to the members of the team to distinguish them from other users, so I need…
Cédric Rémond
  • 954
  • 1
  • 8
  • 20
2
votes
1 answer

ElasticSearch: Opendistro SQL: Failed to parse query due to offending symbol [.11]

I have an ElasticSearch index which has a name with . (Example: my_index-2020.11.06-001). When I use SQL to get the count of all documents, I am getting the following error curl --location --request POST '127.0.0.1:9200/_opendistro/_sql' --header…
Raj
  • 2,368
  • 6
  • 34
  • 52
2
votes
1 answer

Open distro for elasticsearch

can we fetch more than 10000 records from open distro elasticsearch through java ? I tried with normal basic sql query : select id, name from employee order by id desc limit 10, 10; if I try to fetch data with the above query it works fine but it's…
Diwakar
  • 21
  • 1
2
votes
1 answer

Add OpenID users to Open Distro Kibana

I've configured opendistro_security for OpenID. When I attempt to authenticate a user, it fails. Presumably because that user has no permissions. How do I give permissions an openid user? I can't seem to find an obvious way to do so with the…
jwanga
  • 4,166
  • 4
  • 26
  • 27
2
votes
2 answers

"Kibana server is not ready yet" when running from OpenDistro docker image

I use the following docker-compose to run an elasticsearch cluster and kibana: services: odfe-node1: image: amazon/opendistro-for-elasticsearch:1.3.0 container_name: odfe-node1 environment: - cluster.name=odfe-cluster -…
Andrey
  • 20,487
  • 26
  • 108
  • 176
2
votes
2 answers

elastic dump fail with java script out pf memory

used this commands elasticdump --input=/opt/index_5.json --output=http://esserver:9200/index_5 --limit=5000 --transform="doc._source=Object.assign({},doc)" Error like below while importing the data <--- JS stacktrace ---> ==== JS stack trace…
zz10
  • 67
  • 1
  • 10
2
votes
3 answers

Opendistro Elasticsearch Give admin level privilege to anonymous user

I am trying to give anonymous user admin level privilege to write to certain indices on Opendistro bundle of Elasticsearch. I have updated the config.yml with http.anonymous_auth_enabled: true and also made required changes to role.yml for…
2
votes
1 answer

Elasticsearch Exception - Open Distro Alert

I've installed OpenDistro on my elastic search master node for the alerts. RPM is used to install the plugin. After successfull installation of plugin ES is restarted but it shows the following error. Logs 3/13/2019 1:05:55…
Rao Anees
  • 51
  • 1
  • 3
1
vote
0 answers

ElasticSearch(7.10.3): Opendistro(1.13.2) SQL: Query failing at random times

When executing sql query via opendistro llike: POST /_opendistro/_sql?format=jdbc { "query":"show tables like my_index_prefix%" } This executes successfully at certain time and fails at random intervals? What might be the issue? On failure, it gives…
Sonal P
  • 31
  • 1
1
vote
0 answers

Embed Dashboards Kibana with Security

I want to embed my dashboards made in Kibana in a webpage. However, I have security enabled in Elastic and Kibana, so to open a dashboard it requires the Kibana login. There is any way I can auto-sign-in users to see Kibana dashboards in the…
1
vote
0 answers

opendistro/opensearch: equivalent of DATEDIFF() function?

I'm using the doc https://opendistro.github.io/for-elasticsearch-docs/docs/sql/functions/#date-and-time and https://opensearch.org/docs/latest/search-plugins/sql/functions/#date-and-time but haven't found any function like DATEDIFF() in…
shawnzhu
  • 7,233
  • 4
  • 35
  • 51
1
vote
2 answers

Failing to index csv file based data in opendistro elasticsearch

I am trying to index sample csv based data into opendistro elasticsearch but failing to create the index. Could you please let me what i am missing here. csv file to index [admin@fedser32 logstashoss-docker]$ cat /tmp/student.csv…
sb9
  • 370
  • 3
  • 17
1
vote
0 answers

Kibana Alerting - Monitors Disappearing and Alerts are not triggering automatically

the issue is in our kibana monitors are getting lost by themselves and after 2-3 mins they come back [ Normally alerts were being created as expected Second and the most important one is alerts are not triggering even if the condition result is…
1
vote
0 answers

How to resolve "OpenSearch Unreachable: [https://127.0.0.1:9200/][ unable to find valid certification path to requested target?

Hi I am trying to ingest data from logstash(oss) to Opensearch but it seems I can't connect to Opensearch from logstash. The error log: [avs@localhost pipeline]$ ./bin/logstash -f config/pipeline/ipv4.conf -bash: ./bin/logstash: No such file or…
1
vote
1 answer

OpenTelemetry Export Traces to Elastic APM and Elastic OpenDistro

I am trying to instrument by python app (django based) to be able to push transaction traces to Elastic APM which I can later view using the Trace Analytic in OpenDistro Elastic. I have tried the following Method 1: pip install…
1
2
3
8 9