We use activity tracker to track activities on IBM Cloud. how could we identify the user who initiated some action?
Asked
Active
Viewed 59 times
0
-
AT or AT with LogDNA? – data_henrik Jun 19 '19 at 14:36
-
AT without LogDNA – Leo Jun 19 '19 at 14:38
1 Answers
1
The deprecated service Activity Tracker has information about each field. The initiator.id
would map to the userId
within your account.
You can see those IDs, e.g., on the command line like this:
ibmcloud account users --output json
It would produce a list with entries like:
{
"userId": "myemail@example.com",
"firstname": "John",
"lastname": "Doe",
"state": "ACTIVE",
"ibmUniqueId": "IBMid-5555013NNN",
...
}
BTW: For the new Activity Tracker with LogDNA the event fields are similar.

data_henrik
- 16,724
- 2
- 28
- 49
-
is there a different answer for the "w/ LogDNA" scenario? That might be useful to post here too. – Matt Hamann Jun 20 '19 at 03:35
-