首页 \ 问答 \ 如何配置Ambari发送SNMP通知(How to configure Ambari to send SNMP notification)

如何配置Ambari发送SNMP通知(How to configure Ambari to send SNMP notification)

如何在Ambari中发送SNMP通知,我已阅读并执行所需的配置,但是当使用此命令时: nohup snmptrapd -m ALL -A -n -Lf /traps.log &查看通知我找不到日志文件中的任何内容(snmp的版本除外)。 预先感谢您的帮助


How can I sent SNMP notification in Ambari, I have read this and do the required configuration, but when I use this command: nohup snmptrapd -m ALL -A -n -Lf /traps.log & to see notification I don't find any thing in the log file ( except the version of snmp). thank you in advance for help


原文:https://stackoverflow.com/questions/41638647
更新时间:2023-02-22 20:02

最满意答案

删除记录后,清除并重新加载列表。


For anyone that has a similar problem I figured it out. Steve helped me get on the right track here so thank you. I added the ID (primary key) subitem like this:

While reader.Read
            Dim ls As New ListViewItem(reader.Item("first_name").ToString() & " " & reader.Item("surname").ToString)
            ls.SubItems.Add(reader.Item("id").ToString)
            ListView1.Items.Add(ls)

then in the listview focused item I made the query like this:

Dim query As String = "SELECT * FROM contacts WHERE id = '" & ListView1.FocusedItem.SubItems(1).Text & "'"

Now save, update, and delete work with primary key ID reading in the correct order. Thanks for the help and I hope this helps out someone in the future

相关问答

更多
  • 这正是您的错误所描述的。 VB.Net不喜欢推断的数组初始化器 Dim state As IAuthorizationState = New AuthorizationState(New () {BigqueryService.S... 应该是这样的 Dim state As IAuthorizationState = New AuthorizationState(New TheTypeOfArrayHere() {BigqueryService.S... It's exactly as your er ...
  • 假设你有3行读取文件.. L1,L2,L3 dim sTmp as String dim sName as String = L1.Split("|")(1) '--> this Name var sTmp = L2.Split("(")(1) dim sSA = split(sTmp.Replace(")", ""),",") dim sSA1 as String = sSA(0) '---> this SetAttackBaseDamage - 1 dim sSA2 as S ...
  • 删除记录后,清除并重新加载列表。 For anyone that has a similar problem I figured it out. Steve helped me get on the right track here so thank you. I added the ID (primary key) subitem like this: While reader.Read Dim ls As New ListViewItem(reader.Item("first_n ...
  • 你快到了! 这有两种方式。 方式#1:在eCell = eSheet.UsedRange之后添加以下eCell = eSheet.UsedRange : Dim eCellArray as System.Array = eCell.Value 然后通过eCellArray(r,c)获取值,其中r是行,c是列(每个从1开始)。 方式#2:使用此表达式获取单元格的值: CType(eCell(r,c),Excel.Range).Value ' For Option Strict, or just to get ...
  • 首先,您需要认识到,任务管理器正在向您显示操作系统分配给您的应用程序的内存量。 这不一定是实际使用的内存量。 当.NET应用程序第一次启动时,操作系统为它分配内存,就像它为任何进程分配内存一样。 .NET运行时会进一步划分该内存并管理它的使用方式。 运行时可以被认为是“贪婪的”,因为操作系统一旦分配了内存,除非操作系统明确要求,否则它不会返还。 结果是任务管理器中的内存使用量不准确。 要获得内存使用情况的真实图片,您需要使用性能监视器并添加适当的计数器。 至于IDisposable和dispose模式,由于 ...
  • 用于写入文件 // Write single line to new file. Using writer As New StreamWriter("C:\log.txt", True) writer.WriteLine("Important data line 1") End Using 用于从文件中读取 // read from a file Dim line As String Using reader As New StreamReader("file.txt") line = reade ...
  • 您应该在桌面上有一个主键。 这样可以更轻松地使用您的桌面。 如果您没有主键,请尝试找到合适的候选键以设置为主键。 如果您没有合适的列,那么您可能希望考虑添加自动递增代理键(在SQL Server中称为标识 )。 如果您已有主键,请确保更新了LINQ to SQL类。 但是,如果您只想删除所有值,您可能会发现此方法太慢。 另一种方法是使用DataContext.ExecuteCommand直接执行SQL: database.ExecuteCommand("DELETE Contacts"); 这不要求表具有 ...
  • 我认为你的2207不正确,但786 IS正确。 我相信这些值是基于低/高字节位置,由256的幂表示,因为它也在备忘录文件中处理,但值4个字节...... 18 * 256^0 ( to the power 0 ) = 18 * 1 = 18 3 * 256^1 ( to the power 1 ) = 3 * 256 = 768 18 + 768 = 786 现在,对于另一个...... 168 * 256^0 ( to the power 0 ) = 168 * 1 = 168 9 * ...
  • 您可以使用简单的For Each循环和XML文字,例如: ' or load the XML with XDocument.Load(...) ' Dim xml = Office2010 C:\Windows\Office 0
  • SP_TestCom.ReceivedBytesThreshold = 10 这是一个相当麻烦的财产。 是的,26是一个神奇的数字。 它是Ctrl + Z,默认的文件结束字符。 日期回到石器时代,遗憾的是它无法改变。 这对您的DataReceived事件处理程序很重要,它会激发一个额外的时间来告诉您有关Eof的信息。 这搞砸了你的逻辑,BytesToRead的价值是不可预测的。 你必须快速离开,像这样: Private Sub SP_TestCom_DataReceived(ByVal sender As ...

相关文章

更多

最新问答

更多
  • 获取MVC 4使用的DisplayMode后缀(Get the DisplayMode Suffix being used by MVC 4)
  • 如何通过引用返回对象?(How is returning an object by reference possible?)
  • 矩阵如何存储在内存中?(How are matrices stored in memory?)
  • 每个请求的Java新会话?(Java New Session For Each Request?)
  • css:浮动div中重叠的标题h1(css: overlapping headlines h1 in floated divs)
  • 无论图像如何,Caffe预测同一类(Caffe predicts same class regardless of image)
  • xcode语法颜色编码解释?(xcode syntax color coding explained?)
  • 在Access 2010 Runtime中使用Office 2000校对工具(Use Office 2000 proofing tools in Access 2010 Runtime)
  • 从单独的Web主机将图像传输到服务器上(Getting images onto server from separate web host)
  • 从旧版本复制文件并保留它们(旧/新版本)(Copy a file from old revision and keep both of them (old / new revision))
  • 西安哪有PLC可控制编程的培训
  • 在Entity Framework中选择基类(Select base class in Entity Framework)
  • 在Android中出现错误“数据集和渲染器应该不为null,并且应该具有相同数量的系列”(Error “Dataset and renderer should be not null and should have the same number of series” in Android)
  • 电脑二级VF有什么用
  • Datamapper Ruby如何添加Hook方法(Datamapper Ruby How to add Hook Method)
  • 金华英语角.
  • 手机软件如何制作
  • 用于Android webview中图像保存的上下文菜单(Context Menu for Image Saving in an Android webview)
  • 注意:未定义的偏移量:PHP(Notice: Undefined offset: PHP)
  • 如何读R中的大数据集[复制](How to read large dataset in R [duplicate])
  • Unity 5 Heighmap与地形宽度/地形长度的分辨率关系?(Unity 5 Heighmap Resolution relationship to terrain width / terrain length?)
  • 如何通知PipedOutputStream线程写入最后一个字节的PipedInputStream线程?(How to notify PipedInputStream thread that PipedOutputStream thread has written last byte?)
  • python的访问器方法有哪些
  • DeviceNetworkInformation:哪个是哪个?(DeviceNetworkInformation: Which is which?)
  • 在Ruby中对组合进行排序(Sorting a combination in Ruby)
  • 网站开发的流程?
  • 使用Zend Framework 2中的JOIN sql检索数据(Retrieve data using JOIN sql in Zend Framework 2)
  • 条带格式类型格式模式编号无法正常工作(Stripes format type format pattern number not working properly)
  • 透明度错误IE11(Transparency bug IE11)
  • linux的基本操作命令。。。