Racer SQL
Racer SQL

Reputation: 217

Zabbix trigger as INACTIVE

I'm trying to make an Item/trigger where:

When the counter reachs 0 , then send me emails.

I'm using perfmon for this.

The counter i'm using is :

PERF_COUNTER["\\HQPC30599\MSSQL$DBA_SQL:General Statistics\User Connections"]

This is the expression i'm using:

{MAQUINA DBA TESTE:PERF_COUNTER["\\HQPC30599\MSSQL$DBA_SQL:General Statistics\User Connections"].last()}=0

but when I check the trigger, it says INACTIVE:

enter image description here

With the error message unsuported Item Key.

Why is this happening? has anyone passed for this?

enter image description here

enter image description here

Upvotes: 0

Views: 120

Answers (1)

Richlv
Richlv

Reputation: 4143

Ignore the triggers until your items work. In this case, the item does not work. The error tells you that the item key is wrong. You used PERF_COUNTER as the key, but the correct key is perf_counter - you uppercased it for some unknown reason.

Upvotes: 1

Related Questions