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

     




    查看全文
  • 相关阅读:
    只需 4 步,手把手教你如何实现滤镜功能
    paip.提升用户体验---c++ qt自定义窗体(1)---标题栏的绘制
    socket网络编程的一些基础知识
    图像处理、模式识别、模式分类、机器视觉推荐图书
    数据挖掘、机器学习和模式识别关系与区别
    Qt4_VS10 程序打包发布
    Qt之多线程
    QT中.pro文件的写法
    高斯定理的证明
    《Linear Algebra and Its Applications》-chaper3-行列式-行列式初等变换
  • 原文地址:https://www.cnblogs.com/blogscc/p/9266539.html
  • 最新文章
  • thinkphp分页
    php编码规范
    js
    php综合应用
    linux
    php数据结构与算法
    php网络编程
    mysql基础面试
    vue中的三级联动
    发送请求传递参数和页面内接收参数的问题
  • 热门文章
  • vue中的分页操作
    关于element-ui框架里面table组件的使用
    webpack的理解
    ng-show ng-hide ng-if的区别
    CMD和AMD的区别
    HTTP请求方式中get和post的区别
    addEventListener和attachEvent的区别
    阻止事件冒泡和阻止默认行为
    STL的一些泛型算法
    Qt 中文乱码解决大全
Copyright © 2011-2022 走看看