diff options
author | Vincent Ambo <mail@tazj.in> | 2018-06-17T20·36+0200 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2018-06-17T20·36+0200 |
commit | 9f29992d03d6bb941a8bfc16a29c4a72a72fc34a (patch) | |
tree | 384ad1c9d5353369fcd94834c28158113ab937c8 /src/main.rs | |
parent | 208b5dec2cad72f752c091c349a5e954047b74ff (diff) |
refactor(main): Split LOG_NAME & LOG_STREAM variables
Splitting these in two lets users better configure how the logs show up in Stackdriver Logging.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 9db3c94ecf39..33ca57dddbbe 100644 --- a/src/main.rs +++ b/src/main.rs @@ -153,7 +153,7 @@ fn get_project_id() -> String { /// On non-GCP machines the value is determined by using the /// `GOOGLE_CLOUD_PROJECT` and `LOG_NAME` environment variables. fn determine_monitored_resource() -> Value { - if let Ok(log) = env::var("LOG_NAME") { + if let Ok(log) = env::var("LOG_STREAM") { json!({ "type": "logging_log", "labels": { |