Insert Oid

Hello,

My question is about the appearance of a device. I want to insert a range of oids. Is it possible or I have to go one by one?

Thanks and best regards

Find the column of oids you want to report on, replace the oid below with the first oid from that column…

Place this on the apperance → label of a server and all services will be listed.
[oid_column(“1.3.6.1.2.1.25.4.2.1.2”)]

Place this on the apperance → label of a server and if cvd.exe is running it will show up on the label.
[array_element(oid_column(“1.3.6.1.2.1.25.4.2.1.2”), array_find(oid_column(“1.3.6.1.2.1.25.4.2.1.2”),“cvd.exe”))]

You will want to increase the label refresh interval… Check the memory utilization as you mess with this stuff there are some memory leaks in the dude.

Thanks for the reply. The problem is that I see all the data in a row. I would like to see them in different rows.

I tried this way but isn´t a good solution

[array_element (oid_column (1.3.6.1.4.1.28458.7.2.1.3.3.1.2.1.5 "), 0)]
[array_element (oid_column (1.3.6.1.4.1.28458.7.2.1.3.3.1.2.1.5 "), 1)]
[array_element (oid_column (1.3.6.1.4.1.28458.7.2.1.3.3.1.2.1.5 "), 2)]
.
.
.
.

Is there a way to do a function like “for”? for(i = 0, i < “value”, i + +)

Thanks!

I have not seen a variable available in use in any form… Did you mean column instead of row?

I am not sure I understand the problem. If you do not put carrige returns they will not be in a column
[array_element (oid_column ("1.3.6.1.4.1.28458.7.2.1.3.3.1.2.1.5 "), 0)] [array_element (oid_column ("1.3.6.1.4.1.28458.7.2.1.3.3.1.2.1.5 "), 1)] [array_element (oid_column ("1.3.6.1.4.1.28458.7.2.1.3.3.1.2.1.5 "), 2)]

HTH
SD

Yes, i want the elements in a column and I put carriage return but the problem is that the array does not have a fixed number of elements, it´s variable.

Then I can´t create such orders because I don´t know which is the index (can be 1 or can be 100).

I want something like that:

[array_element(oid_column("1.3.6.1.4.1.28458.7.2.1.3.3.1.2.1.5"), i)]

and the make a loop, where “i” is the number of array elements becouse is a variable number.