Ad Widget

Collapse

Expression [1.8.3<1.8] cannot be evaluated?!

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Nerfux
    Junior Member
    • Jan 2011
    • 19

    #1

    Expression [1.8.3<1.8] cannot be evaluated?!

    I have rly no idea what this means the zabbix server log keeps generate this;



    8128:20110207:102957.969 Format error or unsupported operator. Exp: [1.8.3]
    8128:20110207:102957.969 Format error or unsupported operator. Exp: [1.8.3]
    8128:20110207:102957.969 Expression [1.8.3<1.8] cannot be evaluated: Format error or unsupported operator. Exp: [1.8.3]
    8127:20110207:103104.215 Format error or unsupported operator. Exp: [1.8.3]
    8127:20110207:103104.215 Format error or unsupported operator. Exp: [1.8.3]
    8127:20110207:103104.215 Expression [1.8.3<1.8] cannot be evaluated: Format error or unsupported operator. Exp: [1.8.3]
  • JBo
    Senior Member
    • Jan 2011
    • 310

    #2
    Hi,

    Originally posted by Nerfux;79700
    8127:20110207:103104.215 Expression [1.8.3<1.8
    cannot be evaluated: Format error or unsupported operator. Exp: [1.8.3]
    It means that you have an expression that uses < numeric operator with non numeric (string) arguments.

    Have you defined a trigger that looks like: {host:agent.version.last(0)} < 1.8 ?

    agent.version value is a string. You should use string functions.

    Hope this helps,
    JBo

    Comment

    • JBo
      Senior Member
      • Jan 2011
      • 310

      #3
      Hi,

      Originally posted by Nerfux
      8127:20110207:103104.215 Expression [1.8.3<1.8] cannot be evaluated: Format error or unsupported operator. Exp: [1.8.3]
      It means that you have an expression that uses < numeric operator with non numeric (string) arguments.

      Have you defined a trigger that looks like: {host:agent.version.last(0)} < 1.8 ?

      agent.version value is a string. You should use string functions.

      Hope this helps,
      JBo

      Comment

      • Nerfux
        Junior Member
        • Jan 2011
        • 19

        #4
        look at the attachment, what is the right argument to use in the trigger?

        I can only find "Find string value"

        And my zabbix server is 1.8.4, and since this is a windows template i have used the setup from http://www.suiviperf.com/zabbix/ to install agents and there is only version 1.8.3 there. But thanks for the answare, now i know what log is talking about
        Attached Files

        Comment

        • JBo
          Senior Member
          • Jan 2011
          • 310

          #5
          Hi,

          I would try something like:
          {host:agent.version.regexp(^1.8)}=0

          Not exactly the same as you are using.
          It will at least trigger if your agent version is not 1.8.x

          Hope this helps,
          JBo

          Comment

          • Nerfux
            Junior Member
            • Jan 2011
            • 19

            #6
            Originally posted by JBo
            Hi,

            I would try something like:
            {host:agent.version.regexp(^1.8)}=0

            Not exactly the same as you are using.
            It will at least trigger if your agent version is not 1.8.x

            Hope this helps,
            JBo
            Thanks it helps alot!

            Comment

            Working...