All Apps and Add-ons

ERROR ExecProcessor - message from "/opt/splunkforwarder/etc/apps/Splunk_TA_nix/bin/interfaces.sh" cat: /sys/class/net/eth#/speed: Invalid argument

jlstanley
Path Finder

Getting error on many servers about :
ERROR ExecProcessor - message from "/opt/splunkforwarder/etc/apps/Splunk_TA_nix/bin/interfaces.sh" cat: /sys/class/net/eth7/speed: Invalid argument
the nic with vary so it' s not always eth7.

anyone know how to fix offhand?

nunoaragao
Explorer

cat: /sys/class/net/eth7/speed: will return Invalid argument if the NIC is disconnected. Same for duplex.
The way I fixed this, was to previously check if the state is "Up", like this

if [ -r /sys/class/net/$iface/duplex ]; then
         if grep -Fq "up" /sys/class/net/$iface/operstate; then
                     DUPLEX=`cat /sys/class/net/$iface/duplex | sed 's/./\u&/'`
                     [ .... more original code here .... ]
         fi

Other lines of code might also do the trick

0 Karma

jlstanley
Path Finder

I'm wondering if the version 7 of the add-on for Unix and Linux fixes it? if not, I'll give this a try. thanks

0 Karma

esalesapns2
Path Finder

My interface is showing "up", but I'm getting errors for "speed" and "duplex", even if I cat them from the command line; I'm running on a fairly recent Splunk AMI in AWS, One wonders why Splunk hasn't seen/fixed this?

0 Karma

nunoaragao
Explorer

I've hit the same snag on some AMI on AWS. Could not figure out an elegant solution, so I've resorted to:
DUPLEX=cat /sys/class/net/$iface/duplex 2>/dev/null | sed 's/./\u&/'
...
SPEED=cat /sys/class/net/$iface/speed 2>/dev/null

Which redirects the errors to dev null. That was Splunk's implementation back on version 5 of the add-on.

0 Karma

wfrankl2
Explorer

I get the same thing but not just for speed. duplex and docker0

0 Karma
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...