More sensors in voltage section

Can I only add via yaml file in includes/definitions/discovery multiple OID for voltage?

I try it this way, but only one value is always displayed.

voltage:
    data:
        -
            oid: sdsOutputVoltage1
            num_oid: '.1.3.6.1.4.1.33283.1.30.7.4.{{ $index }}'
            index: 0
            descr: 'Voltage1'
            divisor: 100
        -
            oid: sdsOutputVoltage2
            num_oid: '.1.3.6.1.4.1.33283.1.30.7.5.{{ $index }}'
            index: 0
            descr: 'Voltage2'
            divisor: 100

Hi
Your index: xxx must be different for both.
Try this for the 1st one:
index : v1.{{ $index }}

and for the 2nd
index : v2.{{ $index }}

Hi @PipoCanaja,

Thank you very much.

Don’t forget to open a Pull request when your change is finished, so it will get included in LibreNMS for the community.
Thanx