What is the purpose of the 'disabled=1' attribute in an inputs.conf stanza?
Trap 1: It errors out if the input is not found
It does not perform validation.
Trap 2: It deletes the input
It does not delete the input, it only disables it.
Trap 3: It hides the input from the UI
The attribute controls the runtime state, not UI visibility specifically.
- A
It errors out if the input is not found
Why wrong: It does not perform validation.
- B
It prevents the input from running
Setting disabled=1 effectively turns off the data input.
- C
It deletes the input
Why wrong: It does not delete the input, it only disables it.
- D
It hides the input from the UI
Why wrong: The attribute controls the runtime state, not UI visibility specifically.