Code Monkey home page Code Monkey logo

Comments (10)

javsalgar avatar javsalgar commented on August 23, 2024

Hi!

Could you show the logs of the RabbitMQ instances to see if the plugin gets loaded?

from charts.

javsalgar avatar javsalgar commented on August 23, 2024

Also, if the plugin requires a new port different from the default, you may need to edit the networkpolicy

from charts.

andrewg78 avatar andrewg78 commented on August 23, 2024

Hi!

Could you show the logs of the RabbitMQ instances to see if the plugin gets loaded?

this is what I get from rabbitmq-plugins list
image

from charts.

andrewg78 avatar andrewg78 commented on August 23, 2024

Also, if the plugin requires a new port different from the default, you may need to edit the networkpolicy

How can I find out what changes were recently made to this plugin and what new port is required?

EDIT:
I do not see anything potentially related to this issue on the plugin repo
https://github.com/rabbitmq/rabbitmq-server/commits/main/deps/rabbitmq_tracing

from charts.

javsalgar avatar javsalgar commented on August 23, 2024

Thank you so much for the information! It seems that the plugin is indeed installed and enabled. Then the Bitnami packaging is doing the expected commands. I would check with the upstream rabbitmq devs to see if there is an issue with the plugin.

from charts.

razvanphp avatar razvanphp commented on August 23, 2024

I also get into this error, RabbitMQ 3.13.2, cluster with 3 nodes.

While looking into the source code of the plugin, the line 18 where the error is triggered:

    {ok, Dir} = application:get_env(rabbitmq_tracing, directory),
    ok = filelib:ensure_dir(Dir ++ "/a"),

... so the problem seems to be that the file system is read-only where the trace files should be saved, from the documentation:

Configuration options are under the rabbitmq_tracing app (config section, if you will):

directory: controls where the log files go. It defaults to "/var/tmp/rabbitmq-tracing".
username: username to be used by tracing event consumers (default: <<"guest">>)
password: password to be used by tracing event consumers (default: <<"guest">>)

Checked my node:

 {rabbitmq_tracing,
     [{directory,"/var/tmp/rabbitmq-tracing"},
      {password,<<"guest">>},
      {username,<<"guest">>}]},
I have no name!@rabbitmq-1:/$ touch /var/tmp/rabbitmq-tracing
touch: cannot touch '/var/tmp/rabbitmq-tracing': Read-only file system

from charts.

razvanphp avatar razvanphp commented on August 23, 2024

I fixed it by using this in my chart values:

    advancedConfiguration: |-
      [
        {rabbitmq_tracing, [
          {directory, "/opt/bitnami/rabbitmq/.rabbitmq/traces"},
          {username, <<"remote">>},
          {password, <<"remote">>}
        ]}
      ].

For some reason, the new config format does not accept those settings...

from charts.

michaelklishin avatar michaelklishin commented on August 23, 2024

@razvanphp the reason is as simple as "no one has contributed it". You are welcome to do so, RabbitMQ is open source software you very likely get for free.

rabbitmq/rabbitmq-server#11554 explains why exposing the path to rabbitmq.conf is the only approach to path validation Team RabbitMQ will accept and rabbitmq/rabbitmq-server#11551 (comment) explains how rabbitmq.conf schema extensions are tested.

from charts.

github-actions avatar github-actions commented on August 23, 2024

This Issue has been automatically marked as "stale" because it has not had recent activity (for 15 days). It will be closed if no further activity occurs. Thanks for the feedback.

from charts.

github-actions avatar github-actions commented on August 23, 2024

Due to the lack of activity in the last 5 days since it was marked as "stale", we proceed to close this Issue. Do not hesitate to reopen it later if necessary.

from charts.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.