0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Real-Time Event Monitoring

Posted at

Use Real-Time Event Monitoring to Audit User Activity

最後はコーディングですね。

とりあえず、何もしないで検証ボタンをクリックします

もしかして、リアルタイムイベントが設定されたプレイグランドを運よく選んだかも。前のステップはやってない。

We couldn't find an Apex class named LoginEventMonitoringHandler. Make sure that you've created the Apex class and deployed it to your org.

「LoginEventMonitoringHandler」というApexクラスが見つかりません。Apexクラスを作成し、組織にリリースしていることを確認してください。

無事に完了できました

public with sharing class LoginEventMonitoringHandler {
	public static List<LoginEvent> getLoginEvents() {
        return [SELECT Username, SourceIP, Country, City FROM LoginEvent where EventDate = Today];
        }
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?