You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 3, 2020. It is now read-only.
To me this says, make my name "irq whatever" if my plugin is irq, OR make my title empty string.
So, I've replaced it as
name = plugin == "irq" ? name.replace(/^/, 'irq ') : name
Which works great for most of my graphs, but some of the ones specifically coded like load and ^disk get messed up. My suspicion is that you added the specific code based on the above bug. With load and disk I can remove the specific code and it works great. Unfortunately, I don't have all the collectd metrics to cover all the specific cases, so that makes it hard for me to have confidence that you can pull my patch without issue.
The text was updated successfully, but these errors were encountered:
This changes the label generation based on plugin and instance
information towards a more generally usable function to ensure unknown
plugins are not displayed as a complete mess. It also fixes Issue auxesis#49.
This issue was closed.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
For most of my graphs, I get an empty string as the line label. It seems to be coming from line 17, which I think is a bug.
To me this says, make my name "irq whatever" if my plugin is irq, OR make my title empty string.
So, I've replaced it as
Which works great for most of my graphs, but some of the ones specifically coded like load and ^disk get messed up. My suspicion is that you added the specific code based on the above bug. With load and disk I can remove the specific code and it works great. Unfortunately, I don't have all the collectd metrics to cover all the specific cases, so that makes it hard for me to have confidence that you can pull my patch without issue.
The text was updated successfully, but these errors were encountered: