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

     




    查看全文
  • 相关阅读:
    PIE SDK SFIM融合
    PIE SDK PCA融合
    c# 粘贴复制
    dev gridview 单元格值拖拽替换
    sql 行数据找出最大的及所有数据最大的
    mvc 登陆界面+后台代码
    mvc控制器返回操作结果封装
    Java 未来行情到底如何,来看看各界人士是怎么说的
    Java工程师修炼之路(校招总结)
    ​为什么我会选择走 Java 这条路?
  • 原文地址:https://www.cnblogs.com/blogscc/p/9266539.html
  • 最新文章
  • Delphi内建异常类 异常处理参考
    Delphi RegisterHotKey 设置系统热键
    abp去掉AbpUser中的Name,Surname,去掉姓和名分离
    abp实战-ContosoUniversity Abp版-2添加菜单与创建实体
    abp实战-ContosoUniversity Abp版-1运行项目
    学习abp-2-ContosoUniversity Abp版
    学习abp-1-ContosoUniversity Abp版
    Metronic学习-1-替换google字体,让页面打开更流畅
    JavaScript读取json文件
    abp mysql 数据库 Failed executing DbCommand (0ms) [Parameters=[], CommandType='Text', CommandTimeout='3
  • 热门文章
  • aspnet zero Refused to apply style from '...'because its MIME type ('') is not a supported styleshee
    EF Core批量插入与删除
    PIE SDK K-Means分类
    PIE SDK彩色空间变换
    PIE SDK ISODATA分类
    PIE SDK地图鹰眼图
    PIE SDK正射校正
    PIE SDK辐射定标
    PIE SDK大气校正
    PIE SDK彩色标准化融合
Copyright © 2011-2022 走看看