首页 \ 问答 \ 如何查看已删除的RDS实例上的事件?(How to see events on RDS instance which is deleted?)

如何查看已删除的RDS实例上的事件?(How to see events on RDS instance which is deleted?)

我们帐户中运行的RDS实例之一将被删除。 我们想知道删除的人和时间。

有没有办法找到某个地方的日志? 如何查看已删除的RDS实例上的事件


One of RDS instance running within our account is deleted. We would like to find out who and when it is deleted.

Is there a way to find a log of that somewhere? How can I see the events on RDS instance which is deleted


原文:https://stackoverflow.com/questions/37344300
更新时间:2022-07-23 09:07

最满意答案

一般来说,如果你想修补一些内置的方法,你应该首先为原始方法制作一个别名。 大多数情况下,你会用最重要的方法在某处调用旧的。 否则,您将失去原始方法的功能,并且可能会破坏应用程序逻辑。

  1. 使用ri require或阅读文档以找出require方法的定义位置。 你会发现它在Kernel模块中。 此外,您将找到其方法签名,以便您知道参数列表的外观。
  2. Monkey补丁模块Kernel 。 除非你知道你在做什么,否则不要中断功能。
module Kernel
  # make an alias of the original require
  alias_method :original_require, :require

  # rewrite require
  def require name
    puts name
    original_require name
  end
end

# test the new require
require 'date'

Generally, if you want to patch some built-in method, you should first make an alias for the original method. Most of the time you'll call the old one somewhere in your overriding method. Otherwise you'll lost the functionality of the original method and it's likely to break the application logic.

  1. Use ri require or read the documentation to find out where the require method is defined. You'll find it's in Kernel module. Besides, you'll find its method signature so you know what the parameter list looks like.
  2. Monkey patch module Kernel. DON'T break the functionality unless you know what you are doing.
module Kernel
  # make an alias of the original require
  alias_method :original_require, :require

  # rewrite require
  def require name
    puts name
    original_require name
  end
end

# test the new require
require 'date'

相关问答

更多
  • Ruby中“include”和“require”有什么区别? 回答: 包含和需求方法做得非常不同。 require方法在大多数其他编程语言中包含哪些功能:运行另一个文件。 它还跟踪您以前需要的,不需要相同的文件两次。 要运行另一个文件没有这个添加的功能,你可以使用load方法。 include方法从另一个模块获取所有方法,并将它们包含在当前模块中。 这是一个语言级的东西,而不是像require那样的文件级的东西。 include方法是使用其他模块(通常称为混合)“扩展”类的主要方式。 例如,如果您的类定义方 ...
  • require 'pry' if ENV['RACK_ENV'] == 'development' require 'pry' if ENV['RACK_ENV'] == 'development'
  • 只看文档 : require_relative通过允许您加载与包含require_relative语句的文件相对的文件来补充内置方法的require 。 例如,如果您在“测试”目录中有单元测试类,并且在测试“test / data”目录下有数据,那么您可能会在测试用例中使用这样的行: require_relative "data/customer_data_1" Just look at the docs: require_relative complements the builtin method r ...
  • 一般来说,如果你想修补一些内置的方法,你应该首先为原始方法制作一个别名。 大多数情况下,你会用最重要的方法在某处调用旧的。 否则,您将失去原始方法的功能,并且可能会破坏应用程序逻辑。 使用ri require或阅读文档以找出require方法的定义位置。 你会发现它在Kernel模块中。 此外,您将找到其方法签名,以便您知道参数列表的外观。 Monkey补丁模块Kernel 。 除非你知道你在做什么,否则不要中断功能。 module Kernel # make an alias of the origi ...
  • 您可以覆盖该方法,但更容易设置方法返回的值: ActiveMerchant::Billing::CreditCard.require_name = false 在内部, require_name存储为类实例变量 : ActiveMerchant::Billing::CreditCard.instance_variable_get(:@require_name) #=> false You could override the method, but it's easier to set the valu ...
  • 正如Jesper建议的那样,我使用Dalli memcached客户端解决了这个问题。 As Jesper suggested, I solved the issue using Dalli memcached client.
  • Ruby 1.9.2不包含$LOAD_PATH的当前文件目录。 您可以尝试使用require_relative : require_relative 'cpu.rb' 或者您可以提供实际路径: require './cpu.rb' 或者您可以将当前文件的目录添加到加载路径: $LOAD_PATH.unshift File.dirname(__FILE__) require 'cpu.rb' Ruby 1.9.2 does not include the current file's directory ...
  • 这是什么样的JavaScript语法。 以//开头的任何内容都是Javascript评论。 它是如何处理的? 服务器端的链轮扫描JS文件以获取directives 。 //=是一个特殊的Sprocket指令。 当遇到该指令时,它会要求指令处理器处理该命令,在本例中require 。 在没有Sprockets的情况下, //= require ..行将是一个简单的JS注释。 Ruby require vs Sprockets require 这是两个完全不同的东西。 你链接到的是Ruby的要求。 为什么不使用 ...
  • 更好的使用方式 require_relative "sort" intead of require "sort" 谢谢,@JörgWMittag。 或者您可以添加ruby应该搜索文件的路径(可能存在安全风险): $:.unshift File.join(File.dirname(__FILE__), ".") # current directory require 'sort' The better way to use require_relative "sort" intead of requi ...
  • 检查以下简单示例: class Person def initialize(age) @age = age end def compare_to(other) # we're calling a protected method on the other instance of the current class age <=> other.age end # it will not work if we use 'private' here protec ...

相关文章

更多

最新问答

更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)