Ad Widget

Collapse

web monitoring Zabbix server v2.2.1

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • andron26
    Junior Member
    • Jan 2014
    • 5

    #1

    web monitoring Zabbix server v2.2.1

    Hello,

    Try to monitor web in zabbix.
    Created simple web scenario with one step to monitor home page.
    When I try to monitor web have such status: Step "Home Page" [1 of 1] failed: Couldn't resolve proxy name. The same error in server log.

    I don't use any proxy. Couldn't find any info about this error.
    Please advice.
    Thx
    Attached Files
  • jan.garaj
    Senior Member
    Zabbix Certified Specialist
    • Jan 2010
    • 506

    #2
    1.) Try to add also protocol into URL http://
    2.) Check what is saved in column http_proxy in Zabbix database. Maybe there is some white char.
    Code:
    SELECT name, http_proxy FROM httptest;
    Last edited by jan.garaj; 09-01-2014, 22:34. Reason: Added more info
    Devops Monitoring Expert advice: Dockerize/automate/monitor all the things.
    My DevOps stack: Docker / Kubernetes / Mesos / ECS / Terraform / Elasticsearch / Zabbix / Grafana / Puppet / Ansible / Vagrant

    Comment

    • andron26
      Junior Member
      • Jan 2014
      • 5

      #3
      mysql> SELECT name, http_proxy FROM httptest;
      +-----------+-------------------------------------------------------+
      | name | http_proxy |
      +-----------+-------------------------------------------------------+
      | Home Page | http://[username[assword]@]proxy.example.com[ort] |
      +-----------+-------------------------------------------------------+

      Comment

      • jan.garaj
        Senior Member
        Zabbix Certified Specialist
        • Jan 2010
        • 506

        #4
        "http://[username[password]@]proxy.example.com[port]" that's a problem. Your frontend has some problem, when saved this as http_proxy. Which browser do you use? Is javascript enabled?

        Quick fix on DB level:
        Code:
        UPDATE httptest SET http_proxy='';
        Devops Monitoring Expert advice: Dockerize/automate/monitor all the things.
        My DevOps stack: Docker / Kubernetes / Mesos / ECS / Terraform / Elasticsearch / Zabbix / Grafana / Puppet / Ansible / Vagrant

        Comment

        • andron26
          Junior Member
          • Jan 2014
          • 5

          #5
          Thanks a lot, I use IE 10.
          When I opened in chrome field http proxy has entry: http://[username[password]@]proxy.example.com[port]. After delete it stays empty in db.

          Comment

          Working...