zoukankan      html  css  js  c++  java
  • alerta 集中化告警信息 -zabbix

    Docker安装Alerta

     

    https://hub.docker.com/D/alerta/alerta-web/

     

    How to use this image

    To use this image run either a mongo or postgres container first:

     

    $ docker run --name alerta-db --restart=always -d mongo

    Then link to the database container when running the alerta-web container:

    $ export DATABASE_URL=mongodb://db:27017/monitoring
    $ docker run --restart=always --name alerta-web -e DATABASE_URL=$DATABASE_URL --link alerta-db:db 
    -d -p 8080:8080 alerta/alerta-web

    The API endpoint is at:

    http://<docker>:<port>/api

    Browse to the alerta console at:

    http://<docker>:<port>/

    How to use this image

    To use this image run either a mongo or postgres container first:

    $ docker run --name alerta-db -d mongo
    

    Then link to the database container when running the alerta-web container:

    $ export DATABASE_URL=mongodb://db:27017/monitoring
    $ docker run --name alerta-web -e DATABASE_URL=$DATABASE_URL --link alerta-db:db 
    -d -p 8080:8080 alerta/alerta-web
    

    The API endpoint is at:

    http://<docker>:<port>/api
    

    Browse to the alerta console at:

    http://<docker>:<port>/




    Alerta-zabbix install

    https://github.com/alerta/zabbix-alerta

     




    查看全文
  • 相关阅读:
    某个sql帖子的答题
    JQuery hide
    JQuery tr 循环,删除td
    JQuery Disabled
    QueryString大小设置
    Silverlight HelloWorld
    USB HID通讯流程
    动态调用c++dll(转)
    VB应用程序调用c++编写的动态库(dll)(转)
    读取图像
  • 原文地址:https://www.cnblogs.com/blogscc/p/9266539.html
  • 最新文章
  • Apache Commons Pool 故事一则
    Interview with Dennis Ritchie (2003)
    What We Talk About When We Talk About Distributed Systems
    我们需要专职的QA吗?
    来自 Google 的高可用架构理念与实践
    让我们来谈谈分工
    负载平衡的分发器
    发布/订阅配置
    发布/订阅是如何工作的
    NServiceBus 32位(x86)主机进程
  • 热门文章
  • NServiceBus主机概要文件
    NServiceBus主机
    NServiceBus-NServiceBus连接字符串示例
    NServicebus-使用PowerShell管理NServiceBus
    NServiceBus-安装
    NServiceBus-ievent和ICOMMAND
    正在还原
    PowerDesign Comment显示
    with(nolock)
    for xml path
Copyright © 2011-2022 走看看