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

     




    查看全文
  • 相关阅读:
    window.clipboardData(转载)
    动态添加样式(转载)
    IE6 IE7 FF的CSS Hack总结(转载)
    [轉貼] linux解壓 tar 命令
    [轉]用 snprintf / asprintf 取代不安全的 sprintf
    寫一個函數計算當參數為 n(n很大) 時的值 12+34+56+7……+n
    [轉]vi 與 vim 的指令整理
    MySQL和php採用UTF8的方法
    [轉]printf 引數說明
    [C] warning: ISO C90 forbids mixed declarations and code
  • 原文地址:https://www.cnblogs.com/blogscc/p/9266539.html
  • 最新文章
  • 超赞的纯CSS实现的简约下拉菜单代码
    【酷】JS+CSS实现滑动门与导航条的完美结合
    【酷】JS仿FLASH效果的跳动下拉菜单
    .net数据源(DataSource)
    JavaScript常用验证
    GetPostBackEventReference加RaisePostBackEvent实现自定义控件中回调传参
    [极度郁闷]li标签加上display:inline后空格BUG
    c# java语法对照表
    Web.config中authentiation节点属性及解释
    生成随机密码函数
  • 热门文章
  • MSSQL中EXECUTE(EXEC)参数值
    .net2.0中取得UserId(GUID)或根据UserId取得UserName
    使用MemberShip时Web.config中属性其功能解释
    VSS配置(转载)
    LINQ语句(一)
    IE6 Hack(转载)
    安装部署项目(转自)
    基础知识复习与巩固(一):面试体会
    多个页面引用同一个Html片段(转载)
    去除点击时出现的虚线框(转载)
Copyright © 2011-2022 走看看