Reputation: 1777
In AWS it was possible to run cloudwatch to trigger callback lambda functions on events.
Is it possible in GCE to automatically tag servers with the user who created it based on the activity logs? Google Cloud functions seem to only be able run a non-public callback based on GCS events.
How would I do this?
Upvotes: 0
Views: 542
Reputation: 1098
As a matter of fact, there are four types of triggers for Google Cloud Functions. But none of them is useful in this case.
There is a way to automatically do so, though.
Stackdriver Logging
using a Client Library, as for example Python, in App Engine. compute.instance.insert
(CE creation), the "actor" or "user" and...Upvotes: 1