mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-17 20:38:06 +00:00
add roles to agent & supervisor (#527)
This commit is contained in:
@ -5,7 +5,7 @@
|
||||
use crate::tasks::{analysis, coverage, fuzz, heartbeat::*, merge, report};
|
||||
use anyhow::Result;
|
||||
use onefuzz::machine_id::{get_machine_id, get_scaleset_name};
|
||||
use onefuzz_telemetry::{self as telemetry, Event::task_start, EventData};
|
||||
use onefuzz_telemetry::{self as telemetry, Event::task_start, EventData, Role};
|
||||
use reqwest::Url;
|
||||
use serde::{self, Deserialize};
|
||||
use std::path::PathBuf;
|
||||
@ -151,6 +151,7 @@ impl Config {
|
||||
telemetry::set_property(EventData::MachineId(get_machine_id().await?));
|
||||
telemetry::set_property(EventData::Version(env!("ONEFUZZ_VERSION").to_string()));
|
||||
telemetry::set_property(EventData::InstanceId(self.common().instance_id));
|
||||
telemetry::set_property(EventData::Role(Role::Agent));
|
||||
let scaleset = get_scaleset_name().await?;
|
||||
if let Some(scaleset_name) = &scaleset {
|
||||
telemetry::set_property(EventData::ScalesetId(scaleset_name.to_string()));
|
||||
|
Reference in New Issue
Block a user