zabbix / community-templates

Zabbix Community Templates repository

Home Page:https://share.zabbix.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fortiswitch template port names as $1

ftoledo opened this issue · comments

I triying to use the fortiswitch_124e-poe.yaml template on F148F POE

imagen
the port names sems to wont detected as show as $1

any way to fix ?
thanks!

I have this issue since migrating to ZBX 6.0 in various templates too. If anyone has a solution or even an explanation as to why this happens, I would love to hear it.

I have this issue since migrating to ZBX 6.0 in various templates too. If anyone has a solution or even an explanation as to why this happens, I would love to hear it.

I found that other templates change the variables $1 $2 $nnnn by names
example:
https://github.com/zabbix/community-templates/pull/286/files

That template used too, that pull request changes the template from using positional macros to using discovery macros.

I still don't have knowledge of template development. (I just now start to reading docs)

for this case:
imagen

Should I change the $1 to {#SNMPVALUE} ?

I believe so. Personally, I would import the templates and look at the item prototype. You'd likely see an item prototype with a name of Link Speed $1 and a key of [ifHighSpeed[{#SNMPVALUE}]. I'd change the $1 to {#SNMPVALUE} like you say, re-run discovery or wait for it to run, and see if it updates for the Link Speed items. If it does, then make similar changes on the other item prototypes. If they all work, I'd then export the template and do a pull request.

Yup looks like just these three item prototypes would need that change.

image

Yes! i can conrfim that change $1 to {#SNMPVALUE} just works.

imagen

Thanks a lot, will try to correct our templates in the same way tomorrow