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] No existing channels. but i have a channel #1557

Open
mjk-141 opened this issue May 23, 2024 · 7 comments
Open

[BUG] No existing channels. but i have a channel #1557

mjk-141 opened this issue May 23, 2024 · 7 comments
Labels
bug Something isn't working

Comments

@mjk-141
Copy link

mjk-141 commented May 23, 2024

Hi,
First, I create a monitor and try to get notified via the trigger's action, but it says the channel doesn't exist.
image
but i have 1 channel.
image
So I tried recreating the channel, but it still says it doesn't exist.
and im running in a Docker Compose environment. Below is the docker-compose file I am using:

services:
  opensearch:
    image: opensearchproject/opensearch:latest
    container_name: opensearch_container
    environment:
      - discovery.type=single-node
      - 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
      - OPENSEARCH_INITIAL_ADMIN_PASSWORD=${OPENSEARCH_INITIAL_ADMIN_PASSWORD}
    ulimits:
      memlock:
        soft: -1 # Set memlock to unlimited (no soft or hard limit)
        hard: -1
      nofile:
        soft: 65536 # Maximum number of open files for the opensearch user - set to at least 65536
        hard: 65536
    networks:
      - efk_network
    volumes:
      - "./opensearch-data:/usr/share/opensearch/data"
    ports:
      - "9200:9200"
    expose:
      - 9200
    restart: always

  opensearch-dashboard:
    image: opensearchproject/opensearch-dashboards:latest
    container_name: opensearch_dashboard_container
    networks:
      - efk_network
    ports:
      - "5601:5601"
    expose:
      - "5601"
    environment:
      - 'OPENSEARCH_HOSTS="https://opensearch:9200/"'
    restart: always

networks:
  efk_network:
    driver: bridge

If I've missed something, please let me know.
Thanks!

@mjk-141 mjk-141 added bug Something isn't working untriaged labels May 23, 2024
@lexxxel
Copy link

lexxxel commented May 28, 2024

same here

@evnct
Copy link

evnct commented May 31, 2024

Replicated. I Was checking Opensearch out specifically because of these channels. Does this happen on v2.13.0 as well?

@lexxxel
Copy link

lexxxel commented May 31, 2024

I can only confirm this with v2.14.0. Once upon a time it did work, but I have not validated 2.13.x

@s-mykhailov
Copy link

Same issue here.

I've managed to fix this by downgrading the dashboards package to 2.13.0

$ sudo apt list --installed | grep opensearch
opensearch-dashboards/now 2.13.0 amd64 [installed,local]
opensearch/now 2.14.0 amd64 [installed,local]

@vinylen
Copy link

vinylen commented Jun 20, 2024

Confirmed here as well, OpenSearch & Opensearch-Dashboards 2.14.0

@dblock
Copy link
Member

dblock commented Jun 24, 2024

Looks like a regression, maybe someone can bisect down to a change?

Catch All Triage - 1 2 3 4 5 6

@dblock dblock removed the untriaged label Jun 24, 2024
@maaaax
Copy link

maaaax commented Sep 18, 2024

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

7 participants