Ad Widget

Collapse

Long URLs in Web Monitoring Steps

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Palmertree
    Senior Member
    • Sep 2005
    • 746

    #1

    Long URLs in Web Monitoring Steps

    I found that there is a 128 character limitation on the URL lengths when defining a Step in the Web Monitoring. To increase this length I modified the httpstep database table.

    Changed:
    url varchar(128) to url varchar(255)
  • arunssasidhar
    Junior Member
    • May 2012
    • 6

    #2
    Thank you for the info.

    But you have to edit {WEBROOT}/zabbix/include/schema.inc.php file to work this.

    In this file under httpstep ==>

    Change length accordingly.


    'url' => array(
    'null' => false,
    'type' => DB::FIELD_TYPE_CHAR,
    'length' => 1024,
    'default' => '',
    ),

    Comment

    Working...