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

     




    查看全文
  • 相关阅读:
    【编程题目】输入一个已经按升序排序过的数组和一个数字,在数组中查找两个数,使得它们的和正好是输入的那个数字。
    【编程题目】在一个字符串中找到第一个只出现一次的字符。如输入 abaccdeff,则输出 b。
    Unity3d 开发(七)AssetBundle组织文件夹
    MapReduce 的类型与格式【编写最简单的mapreduce】(1)
    Asterisk[1]
    1181: 念数字
    怎样創建 iOS 展開式 UITableView?
    android自己定义圆盘时钟
    iOS设计模式之NSNotificationCenter 消息中心
    大浪淘沙,JSP终将死去
  • 原文地址:https://www.cnblogs.com/blogscc/p/9266539.html
  • 最新文章
  • vue项目使用简略总结
    vue项目优化--使用CDN和Gzip
    机房合作--11期验收有感
    微信iOS SDK文档总结
    hdu3468 Treasure Hunting 二分匹配
    XCL-Chart柱形图的期望线/分界线
    openSessionInView的使用原理及性能分析
    更新 hadoop eclipse 插件
    Dynamics CRM2013 Form利用window.location.reload()进行全局刷新带来的问题及解决的方法
    响应http报文中的Date属性与cookie过期时间的关系
  • 热门文章
  • 关于functioncharts饼状图篇
    线程基础:线程池(6)——基本使用(中)
    【编程题目】从尾到头输出链表(链表)☆
    【编程题目】调整数组顺序使奇数位于偶数前面
    【编程题目】字符串的排列(字符串)★
    【编程题目】和为 n 连续正数序列
    【编程题目】对称子字符串的最大长度 ★
    【编程题目】数组中超过出现次数超过一半的数字 ☆
    【编程题目】二叉树两个结点的最低共同父结点
    【编程题目】12 个高矮不同的人,排成两排,每排必须是从矮到高排列,而且第二排比对应的第一排的人高,
Copyright © 2011-2022 走看看