如何检查谁在GCP中创建了VM和其他资源?

时间:2019-08-01 19:13:06

标签: google-cloud-platform

我相信它曾经是//gets operation from user public static String getOperation(Scanner scan) { //valid input string to check against String ops = "+-*/=Q"; System.out.print("Please enter an operation (+, -, /, *, = or Q to quit): "); String op = scan.next(); //makes sure input is only 1 character if (op.length() > 1) { //recurses if not 1 character getOperation(scan); } op = op.toUpperCase(); String check = ""; //begins substringing the check string one at a time for comparison against valid for (int i = 0; i < ops.length(); i++) { if (i == ops.length() - 1) { check = ops.substring(i); } else { check = ops.substring(i, i + 1); } //exits with current check if appropriate character if (check.equals(op)) { return op; } } //if not valid input, recurses for proper input getOperation(scan); return check; } 键,但是我在Stackdriver的日志中不再看到它。 https://cloud.google.com/logging/docs/view/overview

如何找到哪个帐户配置了给定资源?

1 个答案:

答案 0 :(得分:1)

您可以在项目主页的“活动”选项卡中访问所有活动。但这很手工

最佳实践之一是使用Stackdriver日志。尤其是要创建要在BigQuery中管理的日志的接收器。实际上,审核日志信息仅保留13个月(准确地说是400天),您可能希望执行超出此限制的搜索。 这非常有趣,因为您可以在文件夹或组织级别执行这些接收器。 最后,将数据存入BigQuery允许您通过简单地查询表来编写搜索/警告脚本。

更多信息here