Has anyone managed to get the example report to work with 2.10.3? #5729
-
Hi there, New to Netbox reports (and GitHub) and trying to get the example report from this address working with 2.10.3: The problem I am hitting when I run it is reported as: I see in 2.10.0 release notes that the following was changed: But when I change 'connection_status' to 'connected_endpoint_reachable' I also get: When I check out the following file: ...I see it does not use connected_endpoint_reachable either, but in fact uses: Basically, my question is, which should I be using to get this report working in 2.10.3? Thanks for any assistance... |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Quite possibly it hasn't been updated. Until it's fixed, there are plenty more sample reports you can try here: |
Beta Was this translation helpful? Give feedback.
-
On the Django models, there is
Therefore, you should replace However I'd say this report is rather dumb: it assumes that everything needs two connected power connections, even for devices which have only one power port, or indeed zero power ports (such as a patch panel). I suggest this instead:
|
Beta Was this translation helpful? Give feedback.
-
Raised pull request #5732 |
Beta Was this translation helpful? Give feedback.
connected_endpoint_reachable
is an attribute in the REST API only. It's defined as:On the Django models, there is
class PathEndpoint
from which the other components inherit. It has: