Следовал руководству (GCE), чтобы настроить приложение Rails для получения журналов. Но я мог только просматривать системные журналы в программе просмотра журнала. И при выполнении следующей команды в консоли Rails Rails.logger
Объект экземпляра облака Google возвращается положительно.
Followed the steps to interact with the Google Cloud Library
`
## Imports the Google Cloud client library
require "google/cloud/logging"
## Your Google Cloud Platform project ID
project_id = "test-rails"
## Instantiates a client
logging = Google::Cloud::Logging.new project: my_proid_56678
## Prepares a log entry
entry = logging.entry
## The data to log
entry.payload = "Hello, world!"
## The name of the log to write to
entry.log_name = "Dashboard log"
## The resource associated with the data
entry.resource.type = "global"
## Writes the log entry
logging.write_entries entry
puts "Logged #{entry.payload}" `
### But, the above lines are not been reflected in Logs viewer