Questions tagged [opensearch-dashboards]

95 questions
0
votes
1 answer

What `primaries` and `deleted documents` columns in opensearch dashboard mean

Please have a look at this picture from OpenSearch Dashboard. This table can be found under Index Management -> Indices Total size is 45gb and primaries is 22gb, does it mean that this index takes 67gb in general of disk space? Deleted documents…
Shambala
  • 74
  • 7
0
votes
1 answer

Painless Script to Increment doc_id field

Very new to this Painless Scripting, and I'm finding a lot of Pain with it. It's nothing like any scripting languages I've used in the past. I'm 100% sure that this is a syntax issue but cannot figure it out. I have a static index with a large…
0
votes
1 answer

Issue with metricbeat data visualization in OpenSearch dashboards

Metricbeat sent some data through logstash into opensearch. After first hit I set proper Index Pattern to read incoming data: Everything looks fine until I want to create a vizualization (line chart or table) for this data: Looks like there is…
hcz
  • 53
  • 4
0
votes
2 answers

How to grant save dashboard permission in OpenSearch Dashboards

I want to provide a user e.g. an analyst a set of permissions that will allow him to: read index build dashboard around it save dashboard First two activities are easily covered by the permissions I found (using cluster_composite_ops_ro and…
0
votes
0 answers

How to upload data to OpenSearch Dashboard

We have OpenSearch and OpenSearch Dashboard installed in Linux machine. Now, we have a data set in excel or csv format, how to upload this data to create visualizations? Please suggest if there any other way to upload or correct if this approach to…
0
votes
1 answer

Can I round aggregation metrics in OpenSearch/Kibana dashboard?

I created a simple DataTable visualization in OpenSearch Dashboard (which is basically Kibana in AWS). I want table with average time per user. So I group by user, and use "Average" metric. It works great, but! the log has time in milliseconds, with…
0
votes
2 answers

OpenSearch Dashboard time field

I have Fluentd + OpenSearch + OpenSearch Dashboard stack for working with logs. The problem is my time field in Opensearch Dashboard is string, so my filter by time doesn't work. Any body knows what's wrong with my configuration? Fluentd…
0
votes
0 answers

How to assign user with "opensearch_dashboards_read_only" in Opensearch Dashboard v2.5.o

I am using the docker-compose.yaml file to run the OpenSearch and OpenSearch dashboard. I am using the v2.5.0 OpenSearch Dashboard. I want to assign the user with role "opensearch_dashboards_read_only" but I am not able to find from the role…
Soorya Prakash
  • 921
  • 3
  • 9
  • 29
0
votes
1 answer

Can anyone help me - how to use arrays in opensearch?

I put an object with some field and i wanna figure out how to mapping the index to handle and show the values like elasticsearch. I dunno why opensearch separate to individual fields the values. Both app has the same index mappings but the display…
0
votes
1 answer

Opensearch assumes wrong time zone

Edit Opensearch increases the timestamp of the logs by one hour. It must somehow assume that the logs come from the UTC time zone. How do I change this behaviour? 2023-02-02 12:47:27,897 [INFO]: becomes 2023-02-02 13:47:27,897 [INFO]:
naraghi
  • 430
  • 1
  • 6
  • 18
0
votes
0 answers

OpenSearch - Sum Amount from array grouped by key

I want to create an Table Visualization in OpenSearch which sums the amount of diffrenz items grouped by the hash of the item. The raw data looks like: { "_source": { "fieldH": "example", "items": [ { "hash": "item1", …
0
votes
0 answers

Integrating Hearbeat helmchart to Opensearch?

I'm facing with the issue while integrating heartbeat v7.6.2 to opensearch v2.4.0. Also I'm thinking about what did I wrong and trying to check everything in the system. Right now every heartbeat pod is running but pod logs are giving below…
0
votes
1 answer

How to update field format in Opensearch/Elasticsearch?

I am trying to change the format of a string field in opensearch: PUT my_index/_mapping { "mappings": { "properties": { "timestamp": { "type": "date", "format": "YYYY-MM-DD HH:mm:ss.SSS" } } } } Response…
naraghi
  • 430
  • 1
  • 6
  • 18
0
votes
1 answer

How to parse timestamp as date in opensearch?

I have some logs like this: 2022-12-07 17:22:53,838 [INFO]: {"status_code": 304, "method": "GET", "url": "/backend/some/url", "remote_ip": "rem.ote.ip.add", "response_time": 101.61018371582031} - tornado.access I use an aggregator to parse those…
0
votes
1 answer

Trying to add a custom image to Opensearch but cannot find "ui/assets" folder?

I am trying to add a custom image to OpenSearch dashboards. I want to use locally hosted images and save them in the assets folder. According to Opensearch: https://opensearch.org/docs/latest/dashboards/branding/ if you really want to use locally…