Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Tildes in map doesn't load in exported reports #732

Open
secudna opened this issue Jul 23, 2023 · 4 comments
Open

[BUG] Tildes in map doesn't load in exported reports #732

secudna opened this issue Jul 23, 2023 · 4 comments
Assignees
Labels
bug Something isn't working

Comments

@secudna
Copy link

secudna commented Jul 23, 2023

Describe the bug
Tildes in map doesn't load in exported reports
To Reproduce

version: '3'
services:
  opensearch-node1: # This is also the hostname of the container within the Docker network (i.e. https://opensearch-node1/)
    expose:
      - "9200" # Expose port 5601 for web access to OpenSearch Dashboards
    image: opensearchproject/opensearch:2.8.0 # Specifying the latest available image - modify if you want a specific version
    container_name: opensearch-node1
    environment:
      - cluster.name=opensearch-cluster # Name the cluster
      - node.name=opensearch-node1 # Name the node that will run in this container
      - discovery.seed_hosts=opensearch-node1  # Nodes to look for when discovering the cluster
      - cluster.initial_cluster_manager_nodes=opensearch-node1  # Nodes eligible to serve as cluster manager
      - bootstrap.memory_lock=true # Disable JVM heap memory swapping
      - "OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m" # Set min and max JVM heap sizes to at least 50% of system RAM
    ulimits:
      memlock:
        soft: -1 # Set memlock to unlimited (no soft or hard limit)
        hard: -1
    volumes:
      - opensearch-data1:/usr/share/opensearch/data # Creates volume called opensearch-data1 and mounts it to the container
    ports:
      - 9200:9200 # REST API
      - 9600:9600 # Performance Analyzer
    networks:
      - opensearch-net # All of the containers will join the same Docker bridge network
  opensearch-dashboards:
    image: opensearchproject/opensearch-dashboards:2.8.0 # Make sure the version of opensearch-dashboards matches the version of opensearch installed on other nodes
    container_name: opensearch-dashboards
    ports:
      - 5601:5601 # Map host port 5601 to container port 5601
    expose:
      - "5601" # Expose port 5601 for web access to OpenSearch Dashboards
    environment:
      OPENSEARCH_HOSTS: '["https://opensearch-node1:9200"]' # Define the OpenSearch nodes that OpenSearch Dashboards will query
    networks:
      - 'opensearch-net'

volumes:
  opensearch-data1:
  opensearch-data2:

networks:
  opensearch-net:

Steps to reproduce the behavior:

  1. Go to the dashboard
  2. Click on reporting
  3. Report PDF (or png)
  4. Check the report
image image
@secudna
Copy link
Author

secudna commented Jul 25, 2023

Same with image: opensearchproject/opensearch:2
Workaround possible with Opensearch reporting CLI

@secudna
Copy link
Author

secudna commented Sep 23, 2023

@rupal-bq Do you have any idea why this, thought about CORS but not sure about it

@liamhess
Copy link

Hi @secudna, having the same issue currently, did you find any solution or are you still using the reporting-cli workaround?

@thib-d
Copy link

thib-d commented Nov 30, 2023

Same, maybe @rupal-bq have some news ...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

5 participants