Max level shown:
1 [ Oct 20 21:28:36 Disabled. ]
2 [ Oct 20 21:28:36 Rereading configuration. ]
3 [ Oct 20 21:28:36 Enabled. ]
4 [ Oct 20 21:28:37 Rereading configuration. ]
5 [ Oct 20 21:28:48 Executing start method ("ctrun -l child -o noorphan,regent /opt/oxide/nexus/bin/nexus /var/svc/manifest/site/nexus/config.toml &"). ]
6 [ Oct 20 21:28:48 Method "start" exited with status 0. ]
7 note: configured to log to "/dev/stdout"
82022-10-21T04:28:48.462ZINFOnexus: setting up nexus server
92022-10-21T04:28:48.463ZINFOnexus (ServerContext): registering Oso class class = Action
102022-10-21T04:28:48.464ZINFOnexus (ServerContext): registering Oso class class = AnyActor
112022-10-21T04:28:48.464ZINFOnexus (ServerContext): registering Oso class class = AuthenticatedActor
122022-10-21T04:28:48.464ZINFOnexus (ServerContext): registering Oso class class = Database
132022-10-21T04:28:48.464ZINFOnexus (ServerContext): registering Oso class class = Fleet
142022-10-21T04:28:48.464ZINFOnexus (ServerContext): registering Oso class class = IpPoolList
152022-10-21T04:28:48.465ZINFOnexus (ServerContext): registering Oso class class = GlobalImageList
162022-10-21T04:28:48.465ZINFOnexus (ServerContext): registering Oso class class = ConsoleSessionList
172022-10-21T04:28:48.465ZINFOnexus (ServerContext): registering Oso class class = DeviceAuthRequestList
182022-10-21T04:28:48.465ZINFOnexus (ServerContext): registering Oso class class = SiloIdentityProviderList
192022-10-21T04:28:48.465ZINFOnexus (ServerContext): registering Oso class class = SiloUserList
202022-10-21T04:28:48.466ZINFOnexus (ServerContext): registering Oso class class = Organization
212022-10-21T04:28:48.466ZINFOnexus (ServerContext): registering Oso class class = Project
222022-10-21T04:28:48.466ZINFOnexus (ServerContext): registering Oso class class = Disk
232022-10-21T04:28:48.466ZINFOnexus (ServerContext): registering Oso class class = Snapshot
242022-10-21T04:28:48.466ZINFOnexus (ServerContext): registering Oso class class = Instance
252022-10-21T04:28:48.466ZINFOnexus (ServerContext): registering Oso class class = IpPool
262022-10-21T04:28:48.467ZINFOnexus (ServerContext): registering Oso class class = NetworkInterface
272022-10-21T04:28:48.467ZINFOnexus (ServerContext): registering Oso class class = Vpc
282022-10-21T04:28:48.467ZINFOnexus (ServerContext): registering Oso class class = VpcRouter
292022-10-21T04:28:48.467ZINFOnexus (ServerContext): registering Oso class class = RouterRoute
302022-10-21T04:28:48.467ZINFOnexus (ServerContext): registering Oso class class = VpcSubnet
312022-10-21T04:28:48.468ZINFOnexus (ServerContext): registering Oso class class = ConsoleSession
322022-10-21T04:28:48.468ZINFOnexus (ServerContext): registering Oso class class = DeviceAuthRequest
332022-10-21T04:28:48.468ZINFOnexus (ServerContext): registering Oso class class = DeviceAccessToken
342022-10-21T04:28:48.468ZINFOnexus (ServerContext): registering Oso class class = Rack
352022-10-21T04:28:48.468ZINFOnexus (ServerContext): registering Oso class class = RoleBuiltin
362022-10-21T04:28:48.468ZINFOnexus (ServerContext): registering Oso class class = SshKey
372022-10-21T04:28:48.469ZINFOnexus (ServerContext): registering Oso class class = Silo
382022-10-21T04:28:48.469ZINFOnexus (ServerContext): registering Oso class class = SiloUser
392022-10-21T04:28:48.469ZINFOnexus (ServerContext): registering Oso class class = SiloGroup
402022-10-21T04:28:48.469ZINFOnexus (ServerContext): registering Oso class class = IdentityProvider
412022-10-21T04:28:48.469ZINFOnexus (ServerContext): registering Oso class class = SamlIdentityProvider
422022-10-21T04:28:48.469ZINFOnexus (ServerContext): registering Oso class class = Sled
432022-10-21T04:28:48.470ZINFOnexus (ServerContext): registering Oso class class = UpdateAvailableArtifact
442022-10-21T04:28:48.470ZINFOnexus (ServerContext): registering Oso class class = UserBuiltin
452022-10-21T04:28:48.470ZINFOnexus (ServerContext): registering Oso class class = GlobalImage
462022-10-21T04:28:48.470ZINFOnexus (ServerContext): full Oso configuration config = #\n# Oso configuration for Omicron\n# This file is augmented by generated snippets.\n#\n\n#\n# ACTOR TYPES AND BASIC RULES\n#\n\n# `AnyActor` includes both authenticated and unauthenticated users.\nactor AnyActor {}\n\n# An `AuthenticatedActor` has an identity in the system. All of our operations\n# today require that an actor be authenticated.\nactor AuthenticatedActor {}\n\n# For any resource, `actor` can perform action `action` on it if they're\n# authenticated and their role(s) give them the corresponding permission on that\n# resource.\nallow(actor: AnyActor, action: Action, resource) if\n actor.authenticated and\n has_permission(actor.authn_actor.unwrap(), action.to_perm(), resource);\n\n# Define role relationships\nhas_role(actor: AuthenticatedActor, role: String, resource: Resource)\n\tif resource.has_role(actor, role);\n\n#\n# ROLES AND PERMISSIONS IN THE FLEET/SILO/ORGANIZATION/PROJECT HIERARCHY\n#\n# We define the following permissions for most resources in the system:\n#\n# - "create_child": required to create child resources (of any type)\n#\n# - "list_children": required to list child resources (of all types) of a\n# resource\n#\n# - "modify": required to modify or delete a resource\n#\n# - "read": required to read a resource\n#\n# We define the following predefined roles for only a few high-level resources:\n# the Fleet (see below), Silo, Organization, and Project. The specific roles\n# are oriented around intended use-cases:\n#\n# - "admin": has all permissions on the resource\n#\n# - "collaborator": has "read", "list_children", and "create_child", plus\n# the "admin" role for child resources. The idea is that if you're an\n# Organization Collaborator, you have full control over the Projects within\n# the Organization, but you cannot modify or delete the Organization itself.\n#\n# - "viewer": has "read" and "list_children" on a resource\n#\n# Below the Project level, permissions are granted via roles at the Project\n# level. For example, for someone to be able to create, modify, or delete any\n# Instances, they must be granted project.collaborator, which means they can\n# create, modify, or delete _all_ resources in the Project.\n#\n# The complete set of predefined roles:\n#\n# - fleet.admin (superuser for the whole system)\n# - fleet.collaborator (can manage Silos)\n# - fleet.viewer (can read most non-siloed resources in the system)\n# - silo.admin (superuser for the silo)\n# - silo.collaborator (can create and own Organizations)\n# - silo.viewer (can read most resources within the Silo)\n# - organization.admin (complete control over an organization)\n# - organization.collaborator (can manage Projects)\n# - organization.viewer (can read most resources within the Organization)\n# - project.admin (complete control over a Project)\n# - project.collaborator (can manage all resources within the Project)\n# - project.viewer (can read most resources within the Project)\n#\n# Outside the Silo/Organization/Project hierarchy, we (currently) treat most\n# resources as nested under Fleet or else a synthetic resource (see below). We\n# do not yet support role assignments on anything other than Fleet, Silo,\n# Organization, or Project.\n#\n\n# "Fleet" is a global singleton representing the whole system. The name comes\n# from the idea described in RFD 24, but it's not quite right. This probably\n# should be more like "Region" or "AvailabilityZone". The precise boundaries\n# have not yet been figured out.\nresource Fleet {\n\tpermissions = [\n\t "list_children",\n\t "modify",\n\t "read",\n\t "create_child",\n\t];\n\n\troles = [\n\t # Roles that can be attached by users\n\t "admin",\n\t "collaborator",\n\t "viewer",\n\n\t # Internal-only roles\n\t "external-authenticator"\n\t];\n\n\t# Roles implied by other roles on this resource\n\t"viewer" if "collaborator";\n\t"collaborator" if "admin";\n\n\t# Permissions granted directly by roles on this resource\n\t"list_children" if "viewer";\n\t"read" if "viewer";\n\t"create_child" if "collaborator";\n\t"modify" if "admin";\n}\n\nresource Silo {\n\tpermissions = [\n\t "list_children",\n\t "modify",\n\t "read",\n\t "create_child",\n\t];\n\troles = [ "admin", "collaborator", "viewer" ];\n\n\t# Roles implied by other roles on this resource\n\t"viewer" if "collaborator";\n\t"collaborator" if "admin";\n\n\t# Permissions granted directly by roles on this resource\n\t"list_children" if "viewer";\n\t"read" if "viewer";\n\n\t"create_child" if "collaborator";\n\t"modify" if "admin";\n\n\t# Permissions implied by roles on this resource's parent (Fleet). Fleet\n\t# privileges allow a user to see and potentially administer the Silo,\n\t# but they do not give anyone permission to look at anything inside the\n\t# Silo. To achieve this, we use permission rules here. (If we granted\n\t# Fleet administrators _roles_ on the Silo, then those would cascade\n\t# into the Silo as well.)\n\trelations = { parent_fleet: Fleet };\n\t"read" if "viewer" on "parent_fleet";\n\t"modify" if "collaborator" on "parent_fleet";\n\n\t# external authenticator has to create silo users\n\t"list_children" if "external-authenticator" on "parent_fleet";\n\t"create_child" if "external-authenticator" on "parent_fleet";\n}\n\nhas_relation(fleet: Fleet, "parent_fleet", silo: Silo)\n\tif silo.fleet = fleet;\n\n# As a special case, all authenticated users can read their own Silo. That's\n# not quite the same as having the "viewer" role. For example, they cannot list\n# Organizations in the Silo.\n#\n# One reason this is necessary is because if an unprivileged user tries to\n# create an Organization using "POST /organizations", they should get back a 403\n# (which implies they're able to see /organizations, which is essentially seeing\n# the Silo itself) rather than a 404. This behavior isn't a hard constraint\n# (i.e., you could reasonably get a 404 for an API you're not allowed to call).\n# Nor is the implementation (i.e., we could special-case this endpoint somehow).\n# But granting this permission is the simplest way to keep this endpoint's\n# behavior consistent with the rest of the API.\n#\n# This rule is also used to determine if a user can list the identity providers\n# in the Silo (which they should be able to), since that's predicated on being\n# able to read the Silo.\n#\n# It's unclear what else would break if users couldn't see their own Silo.\nhas_permission(actor: AuthenticatedActor, "read", silo: Silo)\n\tif silo in actor.silo;\n\nresource Organization {\n\tpermissions = [\n\t "list_children",\n\t "modify",\n\t "read",\n\t "create_child",\n\t];\n\troles = [ "admin", "collaborator", "viewer" ];\n\n\t# Roles implied by other roles on this resource\n\t"viewer" if "collaborator";\n\t"collaborator" if "admin";\n\n\t# Permissions granted directly by roles on this resource\n\t"list_children" if "viewer";\n\t"read" if "viewer";\n\t"create_child" if "collaborator";\n\t"modify" if "admin";\n\n\t# Roles implied by roles on this resource's parent (Silo)\n\trelations = { parent_silo: Silo };\n\t"admin" if "collaborator" on "parent_silo";\n\t"viewer" if "viewer" on "parent_silo";\n}\nhas_relation(silo: Silo, "parent_silo", organization: Organization)\n\tif organization.silo = silo;\n\nresource Project {\n\tpermissions = [\n\t "list_children",\n\t "modify",\n\t "read",\n\t "create_child",\n\t];\n\troles = [ "admin", "collaborator", "viewer" ];\n\n\t# Roles implied by other roles on this resource\n\t"viewer" if "collaborator";\n\t"collaborator" if "admin";\n\n\t# Permissions granted directly by roles on this resource\n\t"list_children" if "viewer";\n\t"read" if "viewer";\n\t"create_child" if "collaborator";\n\t"modify" if "admin";\n\n\t# Roles implied by roles on this resource's parent (Organization)\n\trelations = { parent_organization: Organization };\n\t"admin" if "collaborator" on "parent_organization";\n\t"viewer" if "viewer" on "parent_organization";\n}\nhas_relation(organization: Organization, "parent_organization", project: Project)\n\tif project.organization = organization;\n\n#\n# GENERAL RESOURCES OUTSIDE THE SILO/ORGANIZATION/PROJECT HIERARCHY\n#\n# Many resources use snippets of Polar generated by the `authz_resource!` Rust\n# macro. Some resources require custom Polar code. Those appear here.\n#\n\nresource SiloUser {\n\tpermissions = [\n\t "list_children",\n\t "modify",\n\t "read",\n\t "create_child",\n\t];\n\n\t# Fleet and Silo administrators can manage a Silo's users. This is one\n\t# of the only areas of Silo configuration that Fleet Administrators have\n\t# permissions on.\n\trelations = { parent_silo: Silo, parent_fleet: Fleet };\n\t"list_children" if "viewer" on "parent_silo";\n\t"read" if "viewer" on "parent_silo";\n\t"modify" if "admin" on "parent_silo";\n\t"create_child" if "admin" on "parent_silo";\n\t"list_children" if "admin" on "parent_fleet";\n\t"modify" if "admin" on "parent_fleet";\n\t"read" if "admin" on "parent_fleet";\n\t"create_child" if "admin" on "parent_fleet";\n}\nhas_relation(silo: Silo, "parent_silo", user: SiloUser)\n\tif user.silo = silo;\nhas_relation(fleet: Fleet, "parent_fleet", user: SiloUser)\n\tif user.silo.fleet = fleet;\n\n# authenticated actors have all permissions on themselves\nhas_permission(actor: AuthenticatedActor, _perm: String, silo_user: SiloUser)\n if actor.equals_silo_user(silo_user);\n\nhas_permission(actor: AuthenticatedActor, "read", silo_user: SiloUser)\n if silo_user.silo in actor.silo;\n\nresource SiloGroup {\n\tpermissions = [\n\t "list_children",\n\t "modify",\n\t "read",\n\t "create_child",\n\t];\n\n\trelations = { parent_silo: Silo };\n\t"list_children" if "viewer" on "parent_silo";\n\t"read" if "viewer" on "parent_silo";\n\t"modify" if "admin" on "parent_silo";\n\t"create_child" if "admin" on "parent_silo";\n}\nhas_relation(silo: Silo, "parent_silo", group: SiloGroup)\n\tif group.silo = silo;\n\nresource SshKey {\n\tpermissions = [ "read", "modify" ];\n\trelations = { silo_user: SiloUser };\n\n\t"read" if "read" on "silo_user";\n\t"modify" if "modify" on "silo_user";\n}\nhas_relation(user: SiloUser, "silo_user", ssh_key: SshKey)\n\tif ssh_key.silo_user = user;\n\nresource IdentityProvider {\n\tpermissions = [\n\t "read",\n\t "modify",\n\t "create_child",\n\t "list_children",\n\t];\n\trelations = { parent_silo: Silo, parent_fleet: Fleet };\n\n\t# Silo-level roles grant privileges on identity providers.\n\t"read" if "viewer" on "parent_silo";\n\t"list_children" if "viewer" on "parent_silo";\n\t"modify" if "admin" on "parent_silo";\n\t"create_child" if "admin" on "parent_silo";\n\n\t# Fleet-level roles also grant privileges on identity providers.\n\t"read" if "viewer" on "parent_fleet";\n\t"list_children" if "viewer" on "parent_fleet";\n\t"modify" if "admin" on "parent_fleet";\n\t"create_child" if "admin" on "parent_fleet";\n}\nhas_relation(silo: Silo, "parent_silo", identity_provider: IdentityProvider)\n\tif identity_provider.silo = silo;\nhas_relation(fleet: Fleet, "parent_fleet", collection: IdentityProvider)\n\tif collection.silo.fleet = fleet;\n\nresource SamlIdentityProvider {\n\tpermissions = [\n\t "read",\n\t "modify",\n\t "create_child",\n\t "list_children",\n\t];\n\trelations = { parent_silo: Silo, parent_fleet: Fleet };\n\n\t# Silo-level roles grant privileges on identity providers.\n\t"read" if "viewer" on "parent_silo";\n\t"list_children" if "viewer" on "parent_silo";\n\t"modify" if "admin" on "parent_silo";\n\t"create_child" if "admin" on "parent_silo";\n\n\t# Fleet-level roles also grant privileges on identity providers.\n\t"read" if "viewer" on "parent_fleet";\n\t"list_children" if "viewer" on "parent_fleet";\n\t"modify" if "admin" on "parent_fleet";\n\t"create_child" if "admin" on "parent_fleet";\n}\nhas_relation(silo: Silo, "parent_silo", saml_identity_provider: SamlIdentityProvider)\n\tif saml_identity_provider.silo = silo;\nhas_relation(fleet: Fleet, "parent_fleet", collection: SamlIdentityProvider)\n\tif collection.silo.fleet = fleet;\n\n#\n# SYNTHETIC RESOURCES OUTSIDE THE SILO HIERARCHY\n#\n# The resources here do not correspond to anything that appears explicitly in\n# the API or is stored in the database. These are used either at the top level\n# of the API path (e.g., "/system/images") or as an implementation detail of the system\n# (in the case of console sessions and "Database"). The policies are\n# either statically-defined in this file or driven by role assignments on the\n# Fleet. None of these resources defines their own roles.\n#\n\n# Describes the policy for accessing "/system/ip-pools" in the API\nresource IpPoolList {\n\tpermissions = [\n\t "list_children",\n\t "modify",\n\t "create_child",\n\t];\n\n\t# Fleet Administrators can create or modify the IP Pools list.\n\trelations = { parent_fleet: Fleet };\n\t"modify" if "admin" on "parent_fleet";\n\t"create_child" if "admin" on "parent_fleet";\n\n\t# Fleet Viewers can list IP Pools\n\t"list_children" if "viewer" on "parent_fleet";\n}\nhas_relation(fleet: Fleet, "parent_fleet", ip_pool_list: IpPoolList)\n\tif ip_pool_list.fleet = fleet;\n\n# Describes the policy for accessing "/system/images" (in the API)\nresource GlobalImageList {\n\tpermissions = [\n\t "list_children",\n\t "modify",\n\t "create_child",\n\t];\n\n\t# Fleet Administrators can create or modify the global images list.\n\trelations = { parent_fleet: Fleet };\n\t"modify" if "admin" on "parent_fleet";\n\t"create_child" if "admin" on "parent_fleet";\n\n\t# Fleet Viewers can list global images.\n\t"list_children" if "viewer" on "parent_fleet";\n}\nhas_relation(fleet: Fleet, "parent_fleet", global_image_list: GlobalImageList)\n\tif global_image_list.fleet = fleet;\n\n# Any authenticated user can list and read global images\nhas_permission(_actor: AuthenticatedActor, "list_children", _global_image_list: GlobalImageList);\nhas_permission(_actor: AuthenticatedActor, "read", _global_image: GlobalImage);\n\n# Describes the policy for creating and managing web console sessions.\nresource ConsoleSessionList {\n\tpermissions = [ "create_child" ];\n\trelations = { parent_fleet: Fleet };\n\t"create_child" if "external-authenticator" on "parent_fleet";\n}\nhas_relation(fleet: Fleet, "parent_fleet", collection: ConsoleSessionList)\n\tif collection.fleet = fleet;\n\n# Describes the policy for creating and managing device authorization requests.\nresource DeviceAuthRequestList {\n\tpermissions = [ "create_child" ];\n\trelations = { parent_fleet: Fleet };\n\t"create_child" if "external-authenticator" on "parent_fleet";\n}\nhas_relation(fleet: Fleet, "parent_fleet", collection: DeviceAuthRequestList)\n\tif collection.fleet = fleet;\n\n# Describes the policy for creating and managing Silo identity providers\nresource SiloIdentityProviderList {\n\tpermissions = [ "list_children", "create_child" ];\n\n\trelations = { parent_silo: Silo, parent_fleet: Fleet };\n\n\t# Everyone who can read the Silo (which includes all the users in the\n\t# Silo) can see the identity providers in it.\n\t"list_children" if "read" on "parent_silo";\n\n\t# Fleet and Silo administrators can manage the Silo's identity provider\n\t# configuration. This is one of the only areas of Silo configuration\n\t# that Fleet Administrators have permissions on. This is also one of\n\t# the only cases where we need to look two levels up the hierarchy to\n\t# see if somebody has the right permission. For most other things,\n\t# permissions cascade down the hierarchy so we only need to look at the\n\t# parent.\n\t"create_child" if "admin" on "parent_silo";\n\t"create_child" if "admin" on "parent_fleet";\n}\nhas_relation(silo: Silo, "parent_silo", collection: SiloIdentityProviderList)\n\tif collection.silo = silo;\nhas_relation(fleet: Fleet, "parent_fleet", collection: SiloIdentityProviderList)\n\tif collection.silo.fleet = fleet;\n\n# Describes the policy for creating and managing Silo users (mostly intended for\n# API-managed users)\nresource SiloUserList {\n\tpermissions = [ "list_children", "create_child" ];\n\n\trelations = { parent_silo: Silo, parent_fleet: Fleet };\n\n\t# Everyone who can read the Silo (which includes all the users in the\n\t# Silo) can see the users in it.\n\t"list_children" if "read" on "parent_silo";\n\n\t# Fleet and Silo administrators can manage the Silo's users. This is\n\t# one of the only areas of Silo configuration that Fleet Administrators\n\t# have permissions on. This is also one of the few cases (so far) where\n\t# we need to look two levels up the hierarchy to see if somebody has the\n\t# right permission. For most other things, permissions cascade down the\n\t# hierarchy so we only need to look at the parent.\n\t"create_child" if "admin" on "parent_silo";\n\t"list_children" if "admin" on "parent_fleet";\n\t"create_child" if "admin" on "parent_fleet";\n}\nhas_relation(silo: Silo, "parent_silo", collection: SiloUserList)\n\tif collection.silo = silo;\nhas_relation(fleet: Fleet, "parent_fleet", collection: SiloUserList)\n\tif collection.silo.fleet = fleet;\n\n# These rules grants the external authenticator role the permissions it needs to\n# read silo users and modify their sessions. This is necessary for login to\n# work.\nhas_permission(actor: AuthenticatedActor, "read", silo: Silo)\n\tif has_role(actor, "external-authenticator", silo.fleet);\nhas_permission(actor: AuthenticatedActor, "read", user: SiloUser)\n\tif has_role(actor, "external-authenticator", user.silo.fleet);\nhas_permission(actor: AuthenticatedActor, "modify", user: SiloUser)\n\tif has_role(actor, "external-authenticator", user.silo.fleet);\nhas_permission(actor: AuthenticatedActor, "read", group: SiloGroup)\n\tif has_role(actor, "external-authenticator", group.silo.fleet);\nhas_permission(actor: AuthenticatedActor, "modify", group: SiloGroup)\n\tif has_role(actor, "external-authenticator", group.silo.fleet);\n\nhas_permission(actor: AuthenticatedActor, "read", session: ConsoleSession)\n\tif has_role(actor, "external-authenticator", session.fleet);\nhas_permission(actor: AuthenticatedActor, "modify", session: ConsoleSession)\n\tif has_role(actor, "external-authenticator", session.fleet);\n\n# All authenticated users can read and delete device authn requests because\n# by necessity these operations happen before we've figured out what user (or\n# even Silo) the device auth is associated with. Any user can claim a device\n# auth request with the right user code (that's how it works) -- it's the user\n# code and associated logic that prevents unauthorized access here.\nhas_permission(_actor: AuthenticatedActor, "read", _device_auth: DeviceAuthRequest);\nhas_permission(_actor: AuthenticatedActor, "modify", _device_auth: DeviceAuthRequest);\n\nhas_permission(actor: AuthenticatedActor, "read", device_token: DeviceAccessToken)\n\tif has_role(actor, "external-authenticator", device_token.fleet);\n\nhas_permission(actor: AuthenticatedActor, "read", identity_provider: IdentityProvider)\n\tif has_role(actor, "external-authenticator", identity_provider.silo.fleet);\n\nhas_permission(actor: AuthenticatedActor, "read", saml_identity_provider: SamlIdentityProvider)\n\tif has_role(actor, "external-authenticator", saml_identity_provider.silo.fleet);\n\n# Describes the policy for who can access the internal database.\nresource Database {\n\tpermissions = [\n\t # "query" is required to perform any query against the database,\n\t # whether a read or write query. This is checked when an operation\n\t # checks out a database connection from the connection pool.\n\t #\n\t # Any authenticated user gets this permission. There's generally\n\t # some other authz check involved in the database query. For\n\t # example, if you're querying the database to "read" a "Project", we\n\t # should also be checking that. So why do we do this at all? It's\n\t # a belt-and-suspenders measure so that if we somehow introduced an\n\t # unauthenticated code path that hits the database, it cannot be\n\t # used to DoS the database because we won't allow the operation to\n\t # make the query. (As long as the code path _is_ authenticated, we\n\t # can use throttling mechanisms to prevent DoS.)\n\t "query",\n\n\t # "modify" is required to populate database data that's delivered\n\t # with the system. It should also be required for schema changes,\n\t # when we support those. This is separate from "query" so that we\n\t # cannot accidentally invoke these code paths from API calls and\n\t # other general functions.\n\t "modify"\n\t];\n}\n\n# All authenticated users have the "query" permission on the database.\nhas_permission(_actor: AuthenticatedActor, "query", _resource: Database);\n\n# The "db-init" user is the only one with the "modify" permission.\nhas_permission(USER_DB_INIT: AuthenticatedActor, "modify", _resource: Database);\nhas_permission(USER_DB_INIT: AuthenticatedActor, "create_child", _resource: IpPoolList);\n\n# Allow the internal API admin permissions on all silos.\nhas_role(USER_INTERNAL_API: AuthenticatedActor, "admin", _silo: Silo);\n\n\n\n\n resource Disk {\n permissions = [\n "list_children",\n "modify",\n "read",\n "create_child",\n ];\n\n relations = { containing_project: Project };\n "list_children" if "viewer" on "containing_project";\n "read" if "viewer" on "containing_project";\n "modify" if "collaborator" on "containing_project";\n "create_child" if "collaborator" on "containing_project";\n }\n\n has_relation(parent: Project, "containing_project", child: Disk)\n if child.project = parent;\n \n\n resource Snapshot {\n permissions = [\n "list_children",\n "modify",\n "read",\n "create_child",\n ];\n\n relations = { containing_project: Project };\n "list_children" if "viewer" on "containing_project";\n "read" if "viewer" on "containing_project";\n "modify" if "collaborator" on "containing_project";\n "create_child" if "collaborator" on "containing_project";\n }\n\n has_relation(parent: Project, "containing_project", child: Snapshot)\n if child.project = parent;\n \n\n resource Instance {\n permissions = [\n "list_children",\n "modify",\n "read",\n "create_child",\n ];\n\n relations = { containing_project: Project };\n "list_children" if "viewer" on "containing_project";\n "read" if "viewer" on "containing_project";\n "modify" if "collaborator" on "containing_project";\n "create_child" if "collaborator" on "containing_project";\n }\n\n has_relation(parent: Project, "containing_project", child: Instance)\n if child.project = parent;\n \n\n resource IpPool {\n permissions = [\n "list_children",\n "modify",\n "read",\n "create_child",\n ];\n \n relations = { parent_fleet: Fleet };\n "list_children" if "viewer" on "parent_fleet";\n "read" if "viewer" on "parent_fleet";\n "modify" if "admin" on "parent_fleet";\n "create_child" if "admin" on "parent_fleet";\n }\n has_relation(fleet: Fleet, "parent_fleet", child: IpPool)\n if child.fleet = fleet;\n \n\n resource NetworkInterface {\n permissions = [\n "list_children",\n "modify",\n "read",\n "create_child",\n ];\n\n relations = {\n containing_project: Project,\n parent: Instance\n };\n "list_children" if "viewer" on "containing_project";\n "read" if "viewer" on "containing_project";\n "modify" if "collaborator" on "containing_project";\n "create_child" if "collaborator" on "containing_project";\n }\n\n has_relation(project: Project, "containing_project", child: NetworkInterface)\n if has_relation(project, "containing_project", child.instance);\n\n has_relation(parent: Instance, "parent", child: NetworkInterface)\n if child.instance = parent;\n \n\n resource Vpc {\n permissions = [\n "list_children",\n "modify",\n "read",\n "create_child",\n ];\n\n relations = { containing_project: Project };\n "list_children" if "viewer" on "containing_project";\n "read" if "viewer" on "containing_project";\n "modify" if "collaborator" on "containing_project";\n "create_child" if "collaborator" on "containing_project";\n }\n\n has_relation(parent: Project, "containing_project", child: Vpc)\n if child.project = parent;\n \n\n resource VpcRouter {\n permissions = [\n "list_children",\n "modify",\n "read",\n "create_child",\n ];\n\n relations = {\n containing_project: Project,\n parent: Vpc\n };\n "list_children" if "viewer" on "containing_project";\n "read" if "viewer" on "containing_project";\n "modify" if "collaborator" on "containing_project";\n "create_child" if "collaborator" on "containing_project";\n }\n\n has_relation(project: Project, "containing_project", child: VpcRouter)\n if has_relation(project, "containing_project", child.vpc);\n\n has_relation(parent: Vpc, "parent", child: VpcRouter)\n if child.vpc = parent;\n \n\n resource RouterRoute {\n permissions = [\n "list_children",\n "modify",\n "read",\n "create_child",\n ];\n\n relations = {\n containing_project: Project,\n parent: VpcRouter\n };\n "list_children" if "viewer" on "containing_project";\n "read" if "viewer" on "containing_project";\n "modify" if "collaborator" on "containing_project";\n "create_child" if "collaborator" on "containing_project";\n }\n\n has_relation(project: Project, "containing_project", child: RouterRoute)\n if has_relation(project, "containing_project", child.vpc_router);\n\n has_relation(parent: VpcRouter, "parent", child: RouterRoute)\n if child.vpc_router = parent;\n \n\n resource VpcSubnet {\n permissions = [\n "list_children",\n "modify",\n "read",\n "create_child",\n ];\n\n relations = {\n containing_project: Project,\n parent: Vpc\n };\n "list_children" if "viewer" on "containing_project";\n "read" if "viewer" on "containing_project";\n "modify" if "collaborator" on "containing_project";\n "create_child" if "collaborator" on "containing_project";\n }\n\n has_relation(project: Project, "containing_project", child: VpcSubnet)\n if has_relation(project, "containing_project", child.vpc);\n\n has_relation(parent: Vpc, "parent", child: VpcSubnet)\n if child.vpc = parent;\n \n\n resource ConsoleSession {\n permissions = [\n "list_children",\n "modify",\n "read",\n "create_child",\n ];\n \n relations = { parent_fleet: Fleet };\n "list_children" if "viewer" on "parent_fleet";\n "read" if "viewer" on "parent_fleet";\n "modify" if "admin" on "parent_fleet";\n "create_child" if "admin" on "parent_fleet";\n }\n has_relation(fleet: Fleet, "parent_fleet", child: ConsoleSession)\n if child.fleet = fleet;\n \n\n resource DeviceAuthRequest {\n permissions = [\n "list_children",\n "modify",\n "read",\n "create_child",\n ];\n \n relations = { parent_fleet: Fleet };\n "list_children" if "viewer" on "parent_fleet";\n "read" if "viewer" on "parent_fleet";\n "modify" if "admin" on "parent_fleet";\n "create_child" if "admin" on "parent_fleet";\n }\n has_relation(fleet: Fleet, "parent_fleet", child: DeviceAuthRequest)\n if child.fleet = fleet;\n \n\n resource DeviceAccessToken {\n permissions = [\n "list_children",\n "modify",\n "read",\n "create_child",\n ];\n \n relations = { parent_fleet: Fleet };\n "list_children" if "viewer" on "parent_fleet";\n "read" if "viewer" on "parent_fleet";\n "modify" if "admin" on "parent_fleet";\n "create_child" if "admin" on "parent_fleet";\n }\n has_relation(fleet: Fleet, "parent_fleet", child: DeviceAccessToken)\n if child.fleet = fleet;\n \n\n resource Rack {\n permissions = [\n "list_children",\n "modify",\n "read",\n "create_child",\n ];\n \n relations = { parent_fleet: Fleet };\n "list_children" if "viewer" on "parent_fleet";\n "read" if "viewer" on "parent_fleet";\n "modify" if "admin" on "parent_fleet";\n "create_child" if "admin" on "parent_fleet";\n }\n has_relation(fleet: Fleet, "parent_fleet", child: Rack)\n if child.fleet = fleet;\n \n\n resource RoleBuiltin {\n permissions = [\n "list_children",\n "modify",\n "read",\n "create_child",\n ];\n \n relations = { parent_fleet: Fleet };\n "list_children" if "viewer" on "parent_fleet";\n "read" if "viewer" on "parent_fleet";\n "modify" if "admin" on "parent_fleet";\n "create_child" if "admin" on "parent_fleet";\n }\n has_relation(fleet: Fleet, "parent_fleet", child: RoleBuiltin)\n if child.fleet = fleet;\n \n\n\n\n\n\n\n\n resource Sled {\n permissions = [\n "list_children",\n "modify",\n "read",\n "create_child",\n ];\n \n relations = { parent_fleet: Fleet };\n "list_children" if "viewer" on "parent_fleet";\n "read" if "viewer" on "parent_fleet";\n "modify" if "admin" on "parent_fleet";\n "create_child" if "admin" on "parent_fleet";\n }\n has_relation(fleet: Fleet, "parent_fleet", child: Sled)\n if child.fleet = fleet;\n \n\n resource UpdateAvailableArtifact {\n permissions = [\n "list_children",\n "modify",\n "read",\n "create_child",\n ];\n \n relations = { parent_fleet: Fleet };\n "list_children" if "viewer" on "parent_fleet";\n "read" if "viewer" on "parent_fleet";\n "modify" if "admin" on "parent_fleet";\n "create_child" if "admin" on "parent_fleet";\n }\n has_relation(fleet: Fleet, "parent_fleet", child: UpdateAvailableArtifact)\n if child.fleet = fleet;\n \n\n resource UserBuiltin {\n permissions = [\n "list_children",\n "modify",\n "read",\n "create_child",\n ];\n \n relations = { parent_fleet: Fleet };\n "list_children" if "viewer" on "parent_fleet";\n "read" if "viewer" on "parent_fleet";\n "modify" if "admin" on "parent_fleet";\n "create_child" if "admin" on "parent_fleet";\n }\n has_relation(fleet: Fleet, "parent_fleet", child: UserBuiltin)\n if child.fleet = fleet;\n \n\n resource GlobalImage {\n permissions = [\n "list_children",\n "modify",\n "read",\n "create_child",\n ];\n \n relations = { parent_fleet: Fleet };\n "list_children" if "viewer" on "parent_fleet";\n "read" if "viewer" on "parent_fleet";\n "modify" if "admin" on "parent_fleet";\n "create_child" if "admin" on "parent_fleet";\n }\n has_relation(fleet: Fleet, "parent_fleet", child: GlobalImage)\n if child.fleet = fleet;\n
472022-10-21T04:28:48.484ZINFOnexus (ServerContext): Setting up resolver on subnet: Ipv6Subnet { net: Ipv6Net(Ipv6Network { addr: fd00:1122:3344::, prefix: 48 }) }
482022-10-21T04:28:48.484ZINFOnexus (SEC): SEC running sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
492022-10-21T04:28:48.484ZINFOnexus (SagaRecoverer): start saga recovery
502022-10-21T04:28:48.484ZINFOnexus (dropshot_internal): listening local_addr = [fd00:1122:3344:101::3]:12221
512022-10-21T04:28:48.485ZERROnexus (DataLoader): slog-async: logger dropped messages due to channel overflow count = 411
522022-10-21T04:28:48.485ZINFOnexus (DataLoader): created 13 built-in roles
532022-10-21T04:28:48.493ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::3]:55363
542022-10-21T04:28:48.496ZINFOnexus (SagaRecoverer): listed sagas (0 total)
552022-10-21T04:28:48.499ZINFOnexus (dropshot_internal): request completed error_message_external = Service Unavailable error_message_internal = no oximeter collectors available local_addr = [fd00:1122:3344:101::3]:12221 method = POST remote_addr = [fd00:1122:3344:101::3]:55363 req_id = e933a4ee-6549-42cd-84d6-89b3bbc93953 response_code = 503 uri = /metrics/producers
562022-10-21T04:28:48.500ZWARNnexus: failed to register nexus as a metric producer, will retry in 162.87416ms error_message = RegistrationError("Error Response: status: 503 Service Unavailable; headers: {\\"content-type\\": \\"application/json\\", \\"x-request-id\\": \\"e933a4ee-6549-42cd-84d6-89b3bbc93953\\", \\"content-length\\": \\"133\\", \\"date\\": \\"Fri, 21 Oct 2022 04:28:48 GMT\\"}; value: Error { error_code: Some(\\"ServiceNotAvailable\\"), message: \\"Service Unavailable\\", request_id: \\"e933a4ee-6549-42cd-84d6-89b3bbc93953\\" }")
572022-10-21T04:28:48.510ZINFOnexus (DataLoader): created 3 built-in role assignments
582022-10-21T04:28:48.549ZINFOnexus (DataLoader): created 1 built-in silos
592022-10-21T04:28:48.552ZINFOnexus (DataLoader): created 2 silo users
602022-10-21T04:28:48.553ZINFOnexus (DataLoader): created 2 silo user role assignments
612022-10-21T04:28:48.668ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::3]:42275
622022-10-21T04:28:48.669ZINFOnexus (dropshot_internal): request completed error_message_external = Service Unavailable error_message_internal = no oximeter collectors available local_addr = [fd00:1122:3344:101::3]:12221 method = POST remote_addr = [fd00:1122:3344:101::3]:42275 req_id = 81776c08-19ff-471a-8a70-b29642007b71 response_code = 503 uri = /metrics/producers
632022-10-21T04:28:48.669ZWARNnexus: failed to register nexus as a metric producer, will retry in 500.131877ms error_message = RegistrationError("Error Response: status: 503 Service Unavailable; headers: {\\"content-type\\": \\"application/json\\", \\"x-request-id\\": \\"81776c08-19ff-471a-8a70-b29642007b71\\", \\"content-length\\": \\"133\\", \\"date\\": \\"Fri, 21 Oct 2022 04:28:48 GMT\\"}; value: Error { error_code: Some(\\"ServiceNotAvailable\\"), message: \\"Service Unavailable\\", request_id: \\"81776c08-19ff-471a-8a70-b29642007b71\\" }")
642022-10-21T04:28:49.174ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::3]:38868
652022-10-21T04:28:49.175ZINFOnexus (dropshot_internal): request completed error_message_external = Service Unavailable error_message_internal = no oximeter collectors available local_addr = [fd00:1122:3344:101::3]:12221 method = POST remote_addr = [fd00:1122:3344:101::3]:38868 req_id = 4b326321-ff4f-419d-b7fe-a5b957e7e92e response_code = 503 uri = /metrics/producers
662022-10-21T04:28:49.176ZWARNnexus: failed to register nexus as a metric producer, will retry in 1.134439197s error_message = RegistrationError("Error Response: status: 503 Service Unavailable; headers: {\\"content-type\\": \\"application/json\\", \\"x-request-id\\": \\"4b326321-ff4f-419d-b7fe-a5b957e7e92e\\", \\"content-length\\": \\"133\\", \\"date\\": \\"Fri, 21 Oct 2022 04:28:48 GMT\\"}; value: Error { error_code: Some(\\"ServiceNotAvailable\\"), message: \\"Service Unavailable\\", request_id: \\"4b326321-ff4f-419d-b7fe-a5b957e7e92e\\" }")
672022-10-21T04:28:49.188ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::1]:53083
682022-10-21T04:28:49.189ZINFOnexus: registered sled agent sled_uuid = fb0f7546-4d46-40ca-9d56-cbb810684ca7
692022-10-21T04:28:49.192ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = POST remote_addr = [fd00:1122:3344:101::1]:53083 req_id = 851a7c3d-2b69-4831-9c1a-8bc96e4d716b response_code = 204 uri = /sled-agents/fb0f7546-4d46-40ca-9d56-cbb810684ca7
702022-10-21T04:28:49.290ZINFOnexus (dropshot_external): accepted connection local_addr = 192.168.1.20:80 remote_addr = 192.168.1.199:60316
712022-10-21T04:28:49.324ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:60316 req_id = 6092dcfe-f5e7-4ee7-8ea9-972707fe940c response_code = 200 uri = /organizations
722022-10-21T04:28:49.336ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = 06053bee-820f-4005-a411-af6c792aaf10 response_code = 201 uri = /system/ip-pools
732022-10-21T04:28:49.355ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = 162141a8-d822-467d-97f6-5a06175eb54c response_code = 201 uri = /system/ip-pools/ip-pool-d49f096ff29/ranges/add
742022-10-21T04:28:49.369ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = d0e06cd9-5a3c-481e-a72f-20924423745f response_code = 201 uri = /organizations
752022-10-21T04:28:49.597ZINFOnexus: updated firewall rules on 0 sleds
762022-10-21T04:28:49.597ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = b93a8988-22de-4712-bddb-55b29498891d response_code = 201 uri = /organizations/org-54e264cd56a/projects
772022-10-21T04:28:49.614ZINFOnexus (SecStore): creating saga saga_id = 3a40b4c5-ddb8-402f-8003-96e0addaba37 saga_name = disk-create
782022-10-21T04:28:49.680ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = 3a40b4c5-ddb8-402f-8003-96e0addaba37 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
792022-10-21T04:28:49.680ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = 3a40b4c5-ddb8-402f-8003-96e0addaba37
802022-10-21T04:28:49.710ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = 3a40b4c5-ddb8-402f-8003-96e0addaba37 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
812022-10-21T04:28:49.711ZINFOnexus (SecStore): updating state new_state = done saga_id = 3a40b4c5-ddb8-402f-8003-96e0addaba37
822022-10-21T04:28:49.731ZINFOnexus (SEC): saga finished saga_id = 3a40b4c5-ddb8-402f-8003-96e0addaba37 saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
832022-10-21T04:28:49.732ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = fb4b3842-2b5a-4736-b581-ef258b909df0 response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
842022-10-21T04:28:49.805ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::1]:59829
852022-10-21T04:28:49.806ZINFOnexus: upserting dataset address = [fd00:1122:3344:101::7]:32345 dataset_id = 9eb73a98-f41f-497b-8e2b-5bc1d7e49ae8 zpool_id = e4b4dc87-ab46-49fb-a4b4-d361ae214c03
862022-10-21T04:28:49.827ZINFOnexus (dropshot_internal): request completed error_message_external = not found: zpool with id "e4b4dc87-ab46-49fb-a4b4-d361ae214c03" error_message_internal = not found: zpool with id "e4b4dc87-ab46-49fb-a4b4-d361ae214c03" local_addr = [fd00:1122:3344:101::3]:12221 method = PUT remote_addr = [fd00:1122:3344:101::1]:59829 req_id = c45907a7-69b5-4997-9f25-dc8d8de50dd0 response_code = 404 uri = /zpools/e4b4dc87-ab46-49fb-a4b4-d361ae214c03/dataset/9eb73a98-f41f-497b-8e2b-5bc1d7e49ae8
872022-10-21T04:28:50.316ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::3]:33922
882022-10-21T04:28:50.317ZINFOnexus (dropshot_internal): request completed error_message_external = Service Unavailable error_message_internal = no oximeter collectors available local_addr = [fd00:1122:3344:101::3]:12221 method = POST remote_addr = [fd00:1122:3344:101::3]:33922 req_id = e1380f7e-fb8e-4867-90b3-ad94b65e106d response_code = 503 uri = /metrics/producers
892022-10-21T04:28:50.317ZWARNnexus: failed to register nexus as a metric producer, will retry in 1.129153897s error_message = RegistrationError("Error Response: status: 503 Service Unavailable; headers: {\\"content-type\\": \\"application/json\\", \\"x-request-id\\": \\"e1380f7e-fb8e-4867-90b3-ad94b65e106d\\", \\"content-length\\": \\"133\\", \\"date\\": \\"Fri, 21 Oct 2022 04:28:49 GMT\\"}; value: Error { error_code: Some(\\"ServiceNotAvailable\\"), message: \\"Service Unavailable\\", request_id: \\"e1380f7e-fb8e-4867-90b3-ad94b65e106d\\" }")
902022-10-21T04:28:50.751ZINFOnexus (SecStore): creating saga saga_id = 5eed11e8-ad7d-4283-859b-313fe86c69f6 saga_name = disk-create
912022-10-21T04:28:50.795ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = 5eed11e8-ad7d-4283-859b-313fe86c69f6 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
922022-10-21T04:28:50.795ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = 5eed11e8-ad7d-4283-859b-313fe86c69f6
932022-10-21T04:28:50.806ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = 5eed11e8-ad7d-4283-859b-313fe86c69f6 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
942022-10-21T04:28:50.806ZINFOnexus (SecStore): updating state new_state = done saga_id = 5eed11e8-ad7d-4283-859b-313fe86c69f6
952022-10-21T04:28:50.808ZINFOnexus (SEC): saga finished saga_id = 5eed11e8-ad7d-4283-859b-313fe86c69f6 saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
962022-10-21T04:28:50.809ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = d6e60026-89b1-46ee-ae60-8154597870f1 response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
972022-10-21T04:28:51.452ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::3]:40130
982022-10-21T04:28:51.453ZINFOnexus (dropshot_internal): request completed error_message_external = Service Unavailable error_message_internal = no oximeter collectors available local_addr = [fd00:1122:3344:101::3]:12221 method = POST remote_addr = [fd00:1122:3344:101::3]:40130 req_id = 109b7d67-e7e4-41d8-b08c-7a581f7b6d60 response_code = 503 uri = /metrics/producers
992022-10-21T04:28:51.453ZWARNnexus: failed to register nexus as a metric producer, will retry in 3.960098822s error_message = RegistrationError("Error Response: status: 503 Service Unavailable; headers: {\\"content-type\\": \\"application/json\\", \\"x-request-id\\": \\"109b7d67-e7e4-41d8-b08c-7a581f7b6d60\\", \\"content-length\\": \\"133\\", \\"date\\": \\"Fri, 21 Oct 2022 04:28:50 GMT\\"}; value: Error { error_code: Some(\\"ServiceNotAvailable\\"), message: \\"Service Unavailable\\", request_id: \\"109b7d67-e7e4-41d8-b08c-7a581f7b6d60\\" }")
1002022-10-21T04:28:51.828ZINFOnexus (SecStore): creating saga saga_id = 0083e718-8457-428c-b80d-c15f321bcd5f saga_name = disk-create
1012022-10-21T04:28:51.849ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = 0083e718-8457-428c-b80d-c15f321bcd5f sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1022022-10-21T04:28:51.850ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = 0083e718-8457-428c-b80d-c15f321bcd5f
1032022-10-21T04:28:51.860ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = 0083e718-8457-428c-b80d-c15f321bcd5f sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1042022-10-21T04:28:51.860ZINFOnexus (SecStore): updating state new_state = done saga_id = 0083e718-8457-428c-b80d-c15f321bcd5f
1052022-10-21T04:28:51.862ZINFOnexus (SEC): saga finished saga_id = 0083e718-8457-428c-b80d-c15f321bcd5f saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1062022-10-21T04:28:51.862ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = a9a2a338-1629-44bb-b9b1-3ca3cefe9923 response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
1072022-10-21T04:28:52.136ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::1]:47349
1082022-10-21T04:28:52.137ZINFOnexus: upserting zpool sled_id = fb0f7546-4d46-40ca-9d56-cbb810684ca7 zpool_id = d462a7f7-b628-40fe-80ff-4e4189e2d62b
1092022-10-21T04:28:52.141ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = PUT remote_addr = [fd00:1122:3344:101::1]:47349 req_id = c109f4b5-4f08-4819-82ca-5822e519cf10 response_code = 200 uri = /sled-agents/fb0f7546-4d46-40ca-9d56-cbb810684ca7/zpools/d462a7f7-b628-40fe-80ff-4e4189e2d62b
1102022-10-21T04:28:52.883ZINFOnexus (SecStore): creating saga saga_id = 1daaf484-a2e8-4e1d-80b9-17291b5174f0 saga_name = disk-create
1112022-10-21T04:28:52.905ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = 1daaf484-a2e8-4e1d-80b9-17291b5174f0 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1122022-10-21T04:28:52.905ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = 1daaf484-a2e8-4e1d-80b9-17291b5174f0
1132022-10-21T04:28:52.915ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = 1daaf484-a2e8-4e1d-80b9-17291b5174f0 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1142022-10-21T04:28:52.916ZINFOnexus (SecStore): updating state new_state = done saga_id = 1daaf484-a2e8-4e1d-80b9-17291b5174f0
1152022-10-21T04:28:52.917ZINFOnexus (SEC): saga finished saga_id = 1daaf484-a2e8-4e1d-80b9-17291b5174f0 saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1162022-10-21T04:28:52.918ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = 119646f7-b7dd-4443-a9bf-7c3d807730ca response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
1172022-10-21T04:28:53.938ZINFOnexus (SecStore): creating saga saga_id = d5cd0d08-9938-46f7-9f08-7866680a1f22 saga_name = disk-create
1182022-10-21T04:28:53.962ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = d5cd0d08-9938-46f7-9f08-7866680a1f22 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1192022-10-21T04:28:53.962ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = d5cd0d08-9938-46f7-9f08-7866680a1f22
1202022-10-21T04:28:53.973ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = d5cd0d08-9938-46f7-9f08-7866680a1f22 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1212022-10-21T04:28:53.973ZINFOnexus (SecStore): updating state new_state = done saga_id = d5cd0d08-9938-46f7-9f08-7866680a1f22
1222022-10-21T04:28:53.975ZINFOnexus (SEC): saga finished saga_id = d5cd0d08-9938-46f7-9f08-7866680a1f22 saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1232022-10-21T04:28:53.976ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = 2e9bce9d-eb4e-4f5a-8814-971820b13629 response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
1242022-10-21T04:28:54.995ZINFOnexus (SecStore): creating saga saga_id = 77df1d05-3f10-46a5-98bc-4e1277c79e74 saga_name = disk-create
1252022-10-21T04:28:55.054ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = 77df1d05-3f10-46a5-98bc-4e1277c79e74 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1262022-10-21T04:28:55.054ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = 77df1d05-3f10-46a5-98bc-4e1277c79e74
1272022-10-21T04:28:55.065ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = 77df1d05-3f10-46a5-98bc-4e1277c79e74 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1282022-10-21T04:28:55.065ZINFOnexus (SecStore): updating state new_state = done saga_id = 77df1d05-3f10-46a5-98bc-4e1277c79e74
1292022-10-21T04:28:55.067ZINFOnexus (SEC): saga finished saga_id = 77df1d05-3f10-46a5-98bc-4e1277c79e74 saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1302022-10-21T04:28:55.067ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = a4a7b71a-c33e-4ae7-8c33-7448b61836ab response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
1312022-10-21T04:28:55.418ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::3]:54665
1322022-10-21T04:28:55.420ZINFOnexus (dropshot_internal): request completed error_message_external = Service Unavailable error_message_internal = no oximeter collectors available local_addr = [fd00:1122:3344:101::3]:12221 method = POST remote_addr = [fd00:1122:3344:101::3]:54665 req_id = dcb9341a-2f08-408e-aa04-48b2f5b69197 response_code = 503 uri = /metrics/producers
1332022-10-21T04:28:55.420ZWARNnexus: failed to register nexus as a metric producer, will retry in 11.282881468s error_message = RegistrationError("Error Response: status: 503 Service Unavailable; headers: {\\"content-type\\": \\"application/json\\", \\"x-request-id\\": \\"dcb9341a-2f08-408e-aa04-48b2f5b69197\\", \\"content-length\\": \\"133\\", \\"date\\": \\"Fri, 21 Oct 2022 04:28:54 GMT\\"}; value: Error { error_code: Some(\\"ServiceNotAvailable\\"), message: \\"Service Unavailable\\", request_id: \\"dcb9341a-2f08-408e-aa04-48b2f5b69197\\" }")
1342022-10-21T04:28:56.085ZINFOnexus (SecStore): creating saga saga_id = d66a79ff-9bee-4b40-87da-da49730e987a saga_name = disk-create
1352022-10-21T04:28:56.106ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = d66a79ff-9bee-4b40-87da-da49730e987a sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1362022-10-21T04:28:56.106ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = d66a79ff-9bee-4b40-87da-da49730e987a
1372022-10-21T04:28:56.116ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = d66a79ff-9bee-4b40-87da-da49730e987a sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1382022-10-21T04:28:56.116ZINFOnexus (SecStore): updating state new_state = done saga_id = d66a79ff-9bee-4b40-87da-da49730e987a
1392022-10-21T04:28:56.117ZINFOnexus (SEC): saga finished saga_id = d66a79ff-9bee-4b40-87da-da49730e987a saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1402022-10-21T04:28:56.118ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = d1d41867-65e8-4100-b5ee-23d1e170b1ef response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
1412022-10-21T04:28:57.097ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::1]:40402
1422022-10-21T04:28:57.098ZINFOnexus: upserting zpool sled_id = fb0f7546-4d46-40ca-9d56-cbb810684ca7 zpool_id = f4b4dc87-ab46-49fb-a4b4-d361ae214c03
1432022-10-21T04:28:57.100ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = PUT remote_addr = [fd00:1122:3344:101::1]:40402 req_id = e54886c2-6175-450c-92b7-04d6f8fd5d62 response_code = 200 uri = /sled-agents/fb0f7546-4d46-40ca-9d56-cbb810684ca7/zpools/f4b4dc87-ab46-49fb-a4b4-d361ae214c03
1442022-10-21T04:28:57.136ZINFOnexus (SecStore): creating saga saga_id = 36113aaa-f7b4-4d8d-87de-bcc8567ba032 saga_name = disk-create
1452022-10-21T04:28:57.157ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = 36113aaa-f7b4-4d8d-87de-bcc8567ba032 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1462022-10-21T04:28:57.157ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = 36113aaa-f7b4-4d8d-87de-bcc8567ba032
1472022-10-21T04:28:57.167ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = 36113aaa-f7b4-4d8d-87de-bcc8567ba032 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1482022-10-21T04:28:57.167ZINFOnexus (SecStore): updating state new_state = done saga_id = 36113aaa-f7b4-4d8d-87de-bcc8567ba032
1492022-10-21T04:28:57.169ZINFOnexus (SEC): saga finished saga_id = 36113aaa-f7b4-4d8d-87de-bcc8567ba032 saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1502022-10-21T04:28:57.169ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = 93c8ced3-ccd8-473b-b02a-93f49c17d3c2 response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
1512022-10-21T04:28:58.192ZINFOnexus (SecStore): creating saga saga_id = b1b81b78-3043-4762-ae5e-6c35a28b4448 saga_name = disk-create
1522022-10-21T04:28:58.213ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = b1b81b78-3043-4762-ae5e-6c35a28b4448 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1532022-10-21T04:28:58.214ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = b1b81b78-3043-4762-ae5e-6c35a28b4448
1542022-10-21T04:28:58.224ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = b1b81b78-3043-4762-ae5e-6c35a28b4448 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1552022-10-21T04:28:58.224ZINFOnexus (SecStore): updating state new_state = done saga_id = b1b81b78-3043-4762-ae5e-6c35a28b4448
1562022-10-21T04:28:58.226ZINFOnexus (SEC): saga finished saga_id = b1b81b78-3043-4762-ae5e-6c35a28b4448 saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1572022-10-21T04:28:58.226ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = 022e9ede-1886-4c9c-bc1f-b140aab213f4 response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
1582022-10-21T04:28:59.245ZINFOnexus (SecStore): creating saga saga_id = 77157a42-a45f-4977-8d79-3314419e9531 saga_name = disk-create
1592022-10-21T04:28:59.267ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = 77157a42-a45f-4977-8d79-3314419e9531 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1602022-10-21T04:28:59.268ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = 77157a42-a45f-4977-8d79-3314419e9531
1612022-10-21T04:28:59.278ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = 77157a42-a45f-4977-8d79-3314419e9531 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1622022-10-21T04:28:59.279ZINFOnexus (SecStore): updating state new_state = done saga_id = 77157a42-a45f-4977-8d79-3314419e9531
1632022-10-21T04:28:59.280ZINFOnexus (SEC): saga finished saga_id = 77157a42-a45f-4977-8d79-3314419e9531 saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1642022-10-21T04:28:59.281ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = 41a368e1-2be0-47bf-8cd4-b160c04fb25c response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
1652022-10-21T04:29:00.222ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::1]:54078
1662022-10-21T04:29:00.222ZINFOnexus: upserting zpool sled_id = fb0f7546-4d46-40ca-9d56-cbb810684ca7 zpool_id = e4b4dc87-ab46-49fb-a4b4-d361ae214c03
1672022-10-21T04:29:00.226ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = PUT remote_addr = [fd00:1122:3344:101::1]:54078 req_id = d72dc93c-48f7-47c9-bc34-315a5ed13e2c response_code = 200 uri = /sled-agents/fb0f7546-4d46-40ca-9d56-cbb810684ca7/zpools/e4b4dc87-ab46-49fb-a4b4-d361ae214c03
1682022-10-21T04:29:00.299ZINFOnexus (SecStore): creating saga saga_id = e4568f1c-c6b5-40ac-a01c-f3be69ed403d saga_name = disk-create
1692022-10-21T04:29:00.321ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = e4568f1c-c6b5-40ac-a01c-f3be69ed403d sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1702022-10-21T04:29:00.321ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = e4568f1c-c6b5-40ac-a01c-f3be69ed403d
1712022-10-21T04:29:00.331ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = e4568f1c-c6b5-40ac-a01c-f3be69ed403d sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1722022-10-21T04:29:00.331ZINFOnexus (SecStore): updating state new_state = done saga_id = e4568f1c-c6b5-40ac-a01c-f3be69ed403d
1732022-10-21T04:29:00.333ZINFOnexus (SEC): saga finished saga_id = e4568f1c-c6b5-40ac-a01c-f3be69ed403d saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1742022-10-21T04:29:00.333ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = 8bdf37fe-2a95-4525-8cb6-71dcb3f3d04b response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
1752022-10-21T04:29:00.399ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::1]:60554
1762022-10-21T04:29:00.399ZINFOnexus: upserting dataset address = [fd00:1122:3344:101::2]:32221 dataset_id = 03130077-ae44-44d6-badf-b9ae9646edb1 zpool_id = d462a7f7-b628-40fe-80ff-4e4189e2d62b
1772022-10-21T04:29:00.404ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = PUT remote_addr = [fd00:1122:3344:101::1]:60554 req_id = fe922b2a-4d62-4282-8134-b29f84231d94 response_code = 200 uri = /zpools/d462a7f7-b628-40fe-80ff-4e4189e2d62b/dataset/03130077-ae44-44d6-badf-b9ae9646edb1
1782022-10-21T04:29:00.695ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::4]:41312
1792022-10-21T04:29:00.697ZINFOnexus: registered new oximeter metric collection server address = [fd00:1122:3344:101::4]:12223 collector_id = 1da65e5b-210c-4859-a7d7-200c1e659972
1802022-10-21T04:29:00.698ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = POST remote_addr = [fd00:1122:3344:101::4]:41312 req_id = 0f483345-acb6-4a89-957e-4f4500a95f4e response_code = 204 uri = /metrics/collectors
1812022-10-21T04:29:01.352ZINFOnexus (SecStore): creating saga saga_id = 418c2b72-e582-494b-b149-439d5dfb7746 saga_name = disk-create
1822022-10-21T04:29:01.373ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = 418c2b72-e582-494b-b149-439d5dfb7746 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1832022-10-21T04:29:01.374ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = 418c2b72-e582-494b-b149-439d5dfb7746
1842022-10-21T04:29:01.384ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = 418c2b72-e582-494b-b149-439d5dfb7746 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1852022-10-21T04:29:01.384ZINFOnexus (SecStore): updating state new_state = done saga_id = 418c2b72-e582-494b-b149-439d5dfb7746
1862022-10-21T04:29:01.386ZINFOnexus (SEC): saga finished saga_id = 418c2b72-e582-494b-b149-439d5dfb7746 saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1872022-10-21T04:29:01.386ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = 221460d0-1996-474f-9fd5-f530f853a6c8 response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
1882022-10-21T04:29:02.405ZINFOnexus (SecStore): creating saga saga_id = 97d5a99b-182b-4ee0-9d8c-a6d42c92fe80 saga_name = disk-create
1892022-10-21T04:29:02.429ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = 97d5a99b-182b-4ee0-9d8c-a6d42c92fe80 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1902022-10-21T04:29:02.429ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = 97d5a99b-182b-4ee0-9d8c-a6d42c92fe80
1912022-10-21T04:29:02.439ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = 97d5a99b-182b-4ee0-9d8c-a6d42c92fe80 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1922022-10-21T04:29:02.439ZINFOnexus (SecStore): updating state new_state = done saga_id = 97d5a99b-182b-4ee0-9d8c-a6d42c92fe80
1932022-10-21T04:29:02.441ZINFOnexus (SEC): saga finished saga_id = 97d5a99b-182b-4ee0-9d8c-a6d42c92fe80 saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
1942022-10-21T04:29:02.441ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = b447680f-d709-4281-9551-6ec919babf02 response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
1952022-10-21T04:29:02.994ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::1]:44276
1962022-10-21T04:29:02.994ZINFOnexus: upserting dataset address = [fd00:1122:3344:101::8]:32345 dataset_id = 5009ac21-9ac1-473a-bd3c-1158af2f8289 zpool_id = f4b4dc87-ab46-49fb-a4b4-d361ae214c03
1972022-10-21T04:29:02.998ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = PUT remote_addr = [fd00:1122:3344:101::1]:44276 req_id = 86b92d7b-09cf-4607-85c0-ddde16bd63ce response_code = 200 uri = /zpools/f4b4dc87-ab46-49fb-a4b4-d361ae214c03/dataset/5009ac21-9ac1-473a-bd3c-1158af2f8289
1982022-10-21T04:29:03.461ZINFOnexus (SecStore): creating saga saga_id = c61daa16-ec08-4de1-a88e-0f3586e30fda saga_name = disk-create
1992022-10-21T04:29:03.484ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = c61daa16-ec08-4de1-a88e-0f3586e30fda sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2002022-10-21T04:29:03.484ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = c61daa16-ec08-4de1-a88e-0f3586e30fda
2012022-10-21T04:29:03.493ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = c61daa16-ec08-4de1-a88e-0f3586e30fda sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2022022-10-21T04:29:03.494ZINFOnexus (SecStore): updating state new_state = done saga_id = c61daa16-ec08-4de1-a88e-0f3586e30fda
2032022-10-21T04:29:03.496ZINFOnexus (SEC): saga finished saga_id = c61daa16-ec08-4de1-a88e-0f3586e30fda saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2042022-10-21T04:29:03.496ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = 10aff11d-21c7-42c0-a8c0-80a584275053 response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
2052022-10-21T04:29:04.515ZINFOnexus (SecStore): creating saga saga_id = 05c37ec7-2e44-431a-aeca-c26a2b1cd29e saga_name = disk-create
2062022-10-21T04:29:04.537ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = 05c37ec7-2e44-431a-aeca-c26a2b1cd29e sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2072022-10-21T04:29:04.538ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = 05c37ec7-2e44-431a-aeca-c26a2b1cd29e
2082022-10-21T04:29:04.548ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = 05c37ec7-2e44-431a-aeca-c26a2b1cd29e sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2092022-10-21T04:29:04.548ZINFOnexus (SecStore): updating state new_state = done saga_id = 05c37ec7-2e44-431a-aeca-c26a2b1cd29e
2102022-10-21T04:29:04.550ZINFOnexus (SEC): saga finished saga_id = 05c37ec7-2e44-431a-aeca-c26a2b1cd29e saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2112022-10-21T04:29:04.551ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = 312bb397-950e-4045-a491-186d34933577 response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
2122022-10-21T04:29:05.570ZINFOnexus (SecStore): creating saga saga_id = 7d578035-d671-4295-bc58-e5ca71392236 saga_name = disk-create
2132022-10-21T04:29:05.592ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = 7d578035-d671-4295-bc58-e5ca71392236 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2142022-10-21T04:29:05.593ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = 7d578035-d671-4295-bc58-e5ca71392236
2152022-10-21T04:29:05.603ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = 7d578035-d671-4295-bc58-e5ca71392236 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2162022-10-21T04:29:05.603ZINFOnexus (SecStore): updating state new_state = done saga_id = 7d578035-d671-4295-bc58-e5ca71392236
2172022-10-21T04:29:05.605ZINFOnexus (SEC): saga finished saga_id = 7d578035-d671-4295-bc58-e5ca71392236 saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2182022-10-21T04:29:05.605ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = 71dd4d78-6809-4844-bd33-2d0fec4b2f61 response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
2192022-10-21T04:29:06.624ZINFOnexus (SecStore): creating saga saga_id = aa510c7b-268e-4a04-b968-818ed8be36c4 saga_name = disk-create
2202022-10-21T04:29:06.648ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = aa510c7b-268e-4a04-b968-818ed8be36c4 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2212022-10-21T04:29:06.649ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = aa510c7b-268e-4a04-b968-818ed8be36c4
2222022-10-21T04:29:06.659ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = aa510c7b-268e-4a04-b968-818ed8be36c4 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2232022-10-21T04:29:06.659ZINFOnexus (SecStore): updating state new_state = done saga_id = aa510c7b-268e-4a04-b968-818ed8be36c4
2242022-10-21T04:29:06.661ZINFOnexus (SEC): saga finished saga_id = aa510c7b-268e-4a04-b968-818ed8be36c4 saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2252022-10-21T04:29:06.661ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = cffe2663-52cc-41e4-ab35-55394d6155bd response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
2262022-10-21T04:29:06.709ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::3]:46816
2272022-10-21T04:29:06.715ZINFOnexus: registered oximeter collector client id = 1da65e5b-210c-4859-a7d7-200c1e659972
2282022-10-21T04:29:06.718ZINFOnexus: assigned collector to new producer collector_id = 1da65e5b-210c-4859-a7d7-200c1e659972 producer_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2292022-10-21T04:29:06.719ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = POST remote_addr = [fd00:1122:3344:101::3]:46816 req_id = 5113e79a-c72a-4fcd-8e7f-d2cbd3f08d38 response_code = 204 uri = /metrics/producers
2302022-10-21T04:29:07.680ZINFOnexus (SecStore): creating saga saga_id = 01172d62-7ef8-4bcb-b6de-c2ce815472a0 saga_name = disk-create
2312022-10-21T04:29:07.702ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = 01172d62-7ef8-4bcb-b6de-c2ce815472a0 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2322022-10-21T04:29:07.702ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = 01172d62-7ef8-4bcb-b6de-c2ce815472a0
2332022-10-21T04:29:07.712ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = 01172d62-7ef8-4bcb-b6de-c2ce815472a0 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2342022-10-21T04:29:07.712ZINFOnexus (SecStore): updating state new_state = done saga_id = 01172d62-7ef8-4bcb-b6de-c2ce815472a0
2352022-10-21T04:29:07.714ZINFOnexus (SEC): saga finished saga_id = 01172d62-7ef8-4bcb-b6de-c2ce815472a0 saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2362022-10-21T04:29:07.714ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = a56471e3-d28e-4ee7-b39f-5ae2acee34a0 response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
2372022-10-21T04:29:08.732ZINFOnexus (SecStore): creating saga saga_id = 0075826a-4c70-4c08-abc3-0d7683ab2bce saga_name = disk-create
2382022-10-21T04:29:08.754ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = 0075826a-4c70-4c08-abc3-0d7683ab2bce sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2392022-10-21T04:29:08.754ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = 0075826a-4c70-4c08-abc3-0d7683ab2bce
2402022-10-21T04:29:08.764ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = 0075826a-4c70-4c08-abc3-0d7683ab2bce sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2412022-10-21T04:29:08.764ZINFOnexus (SecStore): updating state new_state = done saga_id = 0075826a-4c70-4c08-abc3-0d7683ab2bce
2422022-10-21T04:29:08.766ZINFOnexus (SEC): saga finished saga_id = 0075826a-4c70-4c08-abc3-0d7683ab2bce saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2432022-10-21T04:29:08.766ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = 56016643-a570-4f22-bff5-5e258bafe313 response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
2442022-10-21T04:29:09.077ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::1]:50552
2452022-10-21T04:29:09.078ZINFOnexus: upserting dataset address = [fd00:1122:3344:101::5]:8123 dataset_id = 36c9dbcb-a66c-4d48-9f22-a8eae4b139ee zpool_id = d462a7f7-b628-40fe-80ff-4e4189e2d62b
2462022-10-21T04:29:09.081ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = PUT remote_addr = [fd00:1122:3344:101::1]:50552 req_id = 92ae43ee-7764-4f38-8576-6fb7f3cf1331 response_code = 200 uri = /zpools/d462a7f7-b628-40fe-80ff-4e4189e2d62b/dataset/36c9dbcb-a66c-4d48-9f22-a8eae4b139ee
2472022-10-21T04:29:09.445ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::1]:62503
2482022-10-21T04:29:09.445ZINFOnexus: upserting dataset address = [fd00:1122:3344:101::6]:32345 dataset_id = 9a4b5af1-e7a0-4fac-93c1-f379e5294c47 zpool_id = d462a7f7-b628-40fe-80ff-4e4189e2d62b
2492022-10-21T04:29:09.448ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = PUT remote_addr = [fd00:1122:3344:101::1]:62503 req_id = 69d0f04f-1d4f-428a-a01a-4e398a3eef89 response_code = 200 uri = /zpools/d462a7f7-b628-40fe-80ff-4e4189e2d62b/dataset/9a4b5af1-e7a0-4fac-93c1-f379e5294c47
2502022-10-21T04:29:09.785ZINFOnexus (SecStore): creating saga saga_id = acb665ac-0100-4dc5-a619-618d77574227 saga_name = disk-create
2512022-10-21T04:29:09.806ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = acb665ac-0100-4dc5-a619-618d77574227 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2522022-10-21T04:29:09.807ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = acb665ac-0100-4dc5-a619-618d77574227
2532022-10-21T04:29:09.816ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = acb665ac-0100-4dc5-a619-618d77574227 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2542022-10-21T04:29:09.817ZINFOnexus (SecStore): updating state new_state = done saga_id = acb665ac-0100-4dc5-a619-618d77574227
2552022-10-21T04:29:09.818ZINFOnexus (SEC): saga finished saga_id = acb665ac-0100-4dc5-a619-618d77574227 saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2562022-10-21T04:29:09.819ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = f3b43767-2d08-4a91-bcb8-aa7590c0d58f response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
2572022-10-21T04:29:10.837ZINFOnexus (SecStore): creating saga saga_id = 061f8de6-9992-4e80-8d0d-7943e876db89 saga_name = disk-create
2582022-10-21T04:29:10.858ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = 061f8de6-9992-4e80-8d0d-7943e876db89 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2592022-10-21T04:29:10.858ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = 061f8de6-9992-4e80-8d0d-7943e876db89
2602022-10-21T04:29:10.868ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = 061f8de6-9992-4e80-8d0d-7943e876db89 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2612022-10-21T04:29:10.868ZINFOnexus (SecStore): updating state new_state = done saga_id = 061f8de6-9992-4e80-8d0d-7943e876db89
2622022-10-21T04:29:10.870ZINFOnexus (SEC): saga finished saga_id = 061f8de6-9992-4e80-8d0d-7943e876db89 saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2632022-10-21T04:29:10.870ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = c993baef-c901-49db-b1fb-03a6a63dd8b5 response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
2642022-10-21T04:29:11.889ZINFOnexus (SecStore): creating saga saga_id = d9adc7d3-11ba-41c7-ad10-ea7da8bfe4ba saga_name = disk-create
2652022-10-21T04:29:11.914ZINFOnexus (SEC): update for saga cached state new_state = Unwinding saga_id = d9adc7d3-11ba-41c7-ad10-ea7da8bfe4ba sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2662022-10-21T04:29:11.915ZINFOnexus (SecStore): updating state new_state = unwinding saga_id = d9adc7d3-11ba-41c7-ad10-ea7da8bfe4ba
2672022-10-21T04:29:11.925ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = d9adc7d3-11ba-41c7-ad10-ea7da8bfe4ba sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2682022-10-21T04:29:11.926ZINFOnexus (SecStore): updating state new_state = done saga_id = d9adc7d3-11ba-41c7-ad10-ea7da8bfe4ba
2692022-10-21T04:29:11.928ZINFOnexus (SEC): saga finished saga_id = d9adc7d3-11ba-41c7-ad10-ea7da8bfe4ba saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2702022-10-21T04:29:11.928ZINFOnexus (dropshot_external): request completed error_message_external = Service Unavailable error_message_internal = saga error at node "datasets_and_regions": Not enough datasets to allocate disks local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = 89e80139-c005-4641-abf4-5791c2a2ce75 response_code = 503 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
2712022-10-21T04:29:12.364ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::1]:40959
2722022-10-21T04:29:12.364ZINFOnexus: upserting dataset address = [fd00:1122:3344:101::7]:32345 dataset_id = 9eb73a98-f41f-497b-8e2b-5bc1d7e49ae8 zpool_id = e4b4dc87-ab46-49fb-a4b4-d361ae214c03
2732022-10-21T04:29:12.368ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = PUT remote_addr = [fd00:1122:3344:101::1]:40959 req_id = 12b78668-63fd-4ef1-bc22-d5d3466844d5 response_code = 200 uri = /zpools/e4b4dc87-ab46-49fb-a4b4-d361ae214c03/dataset/9eb73a98-f41f-497b-8e2b-5bc1d7e49ae8
2742022-10-21T04:29:12.946ZINFOnexus (SecStore): creating saga saga_id = 7e9188cf-5210-4da4-8d5c-dec284e157d1 saga_name = disk-create
2752022-10-21T04:29:12.997ZWARNnexus: Region requested, not yet created. Retrying in 357.362447ms saga_id = 7e9188cf-5210-4da4-8d5c-dec284e157d1 saga_name = disk-create
2762022-10-21T04:29:12.998ZWARNnexus: Region requested, not yet created. Retrying in 239.779129ms saga_id = 7e9188cf-5210-4da4-8d5c-dec284e157d1 saga_name = disk-create
2772022-10-21T04:29:12.998ZWARNnexus: Region requested, not yet created. Retrying in 188.355087ms saga_id = 7e9188cf-5210-4da4-8d5c-dec284e157d1 saga_name = disk-create
2782022-10-21T04:29:13.396ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = 7e9188cf-5210-4da4-8d5c-dec284e157d1 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2792022-10-21T04:29:13.396ZINFOnexus (SecStore): updating state new_state = done saga_id = 7e9188cf-5210-4da4-8d5c-dec284e157d1
2802022-10-21T04:29:13.398ZINFOnexus (SEC): saga finished saga_id = 7e9188cf-5210-4da4-8d5c-dec284e157d1 saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2812022-10-21T04:29:13.398ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:60316 req_id = 4c68fe67-0707-463f-8a38-ce18f1550b2a response_code = 201 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks
2822022-10-21T04:29:13.421ZINFOnexus (SecStore): creating saga saga_id = 3ad161ab-2632-4865-93ec-1f44efbba0a5 saga_name = disk-delete
2832022-10-21T04:29:13.430ZINFOnexus (SecStore): creating saga saga_id = 1c1af725-6b0b-470a-8979-902251f70fe0 saga_name = volume-delete
2842022-10-21T04:29:13.482ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = 1c1af725-6b0b-470a-8979-902251f70fe0 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2852022-10-21T04:29:13.483ZINFOnexus (SecStore): updating state new_state = done saga_id = 1c1af725-6b0b-470a-8979-902251f70fe0
2862022-10-21T04:29:13.485ZINFOnexus (SEC): saga finished saga_id = 1c1af725-6b0b-470a-8979-902251f70fe0 saga_name = volume-delete sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2872022-10-21T04:29:13.488ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = 3ad161ab-2632-4865-93ec-1f44efbba0a5 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2882022-10-21T04:29:13.488ZINFOnexus (SecStore): updating state new_state = done saga_id = 3ad161ab-2632-4865-93ec-1f44efbba0a5
2892022-10-21T04:29:13.490ZINFOnexus (SEC): saga finished saga_id = 3ad161ab-2632-4865-93ec-1f44efbba0a5 saga_name = disk-delete sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
2902022-10-21T04:29:13.490ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = DELETE remote_addr = 192.168.1.199:60316 req_id = 449fd8bd-dd1f-45e4-a9a2-bb4375acc54e response_code = 204 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd/disks/disk-1316e83f8c0
2912022-10-21T04:29:13.525ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = DELETE remote_addr = 192.168.1.199:60316 req_id = d09f734c-2b9c-4eb8-9b85-0019df548054 response_code = 204 uri = /organizations/org-54e264cd56a/projects/proj-5b356ff5dcd
2922022-10-21T04:29:13.549ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = DELETE remote_addr = 192.168.1.199:60316 req_id = 98bf10ff-7302-4945-b389-f084845a144f response_code = 204 uri = /organizations/org-54e264cd56a
2932022-10-21T04:29:13.613ZINFOnexus (dropshot_external): accepted connection local_addr = 192.168.1.20:80 remote_addr = 192.168.1.199:62430
2942022-10-21T04:29:13.627ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:62430 req_id = 3960b1a7-4d33-45a3-b9a3-f3e04ca28734 response_code = 201 uri = /organizations
2952022-10-21T04:29:13.863ZINFOnexus: updated firewall rules on 0 sleds
2962022-10-21T04:29:13.863ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:62430 req_id = b28baae6-bd02-42c6-9cab-239f01389d14 response_code = 201 uri = /organizations/org-bfd9317f72c/projects
2972022-10-21T04:29:13.881ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:62430 req_id = ae95e3b2-0ebf-43d8-bf09-447df1c26a9f response_code = 201 uri = /session/me/sshkeys
2982022-10-21T04:29:13.900ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:62430 req_id = 92cbd002-2a72-44b4-830f-36d69ed90b02 response_code = 201 uri = /system/images
2992022-10-21T04:29:13.921ZINFOnexus (SecStore): creating saga saga_id = 9088af5f-c35c-472d-8a71-9a129e77d667 saga_name = disk-create
3002022-10-21T04:29:13.967ZWARNnexus: Region requested, not yet created. Retrying in 323.180412ms saga_id = 9088af5f-c35c-472d-8a71-9a129e77d667 saga_name = disk-create
3012022-10-21T04:29:13.968ZWARNnexus: Region requested, not yet created. Retrying in 333.793143ms saga_id = 9088af5f-c35c-472d-8a71-9a129e77d667 saga_name = disk-create
3022022-10-21T04:29:13.968ZWARNnexus: Region requested, not yet created. Retrying in 284.077896ms saga_id = 9088af5f-c35c-472d-8a71-9a129e77d667 saga_name = disk-create
3032022-10-21T04:29:14.344ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = 9088af5f-c35c-472d-8a71-9a129e77d667 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
3042022-10-21T04:29:14.344ZINFOnexus (SecStore): updating state new_state = done saga_id = 9088af5f-c35c-472d-8a71-9a129e77d667
3052022-10-21T04:29:14.347ZINFOnexus (SEC): saga finished saga_id = 9088af5f-c35c-472d-8a71-9a129e77d667 saga_name = disk-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
3062022-10-21T04:29:14.347ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:62430 req_id = 62accfb5-c156-43d8-b1a0-8a4c3a0580a9 response_code = 201 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/disks
3072022-10-21T04:29:14.366ZINFOnexus (SecStore): creating saga saga_id = 7d7329fd-5361-46bf-aa8f-66458b2fb962 saga_name = instance-create
3082022-10-21T04:29:14.842ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::1]:57819
3092022-10-21T04:29:14.846ZINFOnexus: instance updated by sled agent instance_id = a2a35ca1-1504-4997-8c2d-bbae69ee06b4 new_state = starting propolis_id = 412bbee6-59ff-4b51-a632-312b856e6cad
3102022-10-21T04:29:14.846ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = PUT remote_addr = [fd00:1122:3344:101::1]:57819 req_id = da4422b8-f01f-4a5d-b20e-ed8a8b6d9922 response_code = 204 uri = /instances/a2a35ca1-1504-4997-8c2d-bbae69ee06b4
3112022-10-21T04:29:16.725ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::4]:59850
3122022-10-21T04:29:16.726ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = GET remote_addr = [fd00:1122:3344:101::4]:59850 req_id = ecd1cfd5-77b6-46d9-ba90-6d4cc9930b97 response_code = 200 uri = /metrics/collect/e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
3132022-10-21T04:29:21.167ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::c]:48433
3142022-10-21T04:29:21.173ZINFOnexus: registered oximeter collector client id = 1da65e5b-210c-4859-a7d7-200c1e659972
3152022-10-21T04:29:21.176ZINFOnexus: assigned collector to new producer collector_id = 1da65e5b-210c-4859-a7d7-200c1e659972 producer_id = a2a35ca1-1504-4997-8c2d-bbae69ee06b4
3162022-10-21T04:29:21.177ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = POST remote_addr = [fd00:1122:3344:101::c]:48433 req_id = 600c871d-c587-4d86-aae6-5d238ee05265 response_code = 204 uri = /metrics/producers
3172022-10-21T04:29:24.676ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::1]:40945
3182022-10-21T04:29:24.678ZINFOnexus (SEC): update for saga cached state new_state = Done saga_id = 7d7329fd-5361-46bf-aa8f-66458b2fb962 sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
3192022-10-21T04:29:24.678ZINFOnexus (SecStore): updating state new_state = done saga_id = 7d7329fd-5361-46bf-aa8f-66458b2fb962
3202022-10-21T04:29:24.679ZINFOnexus: instance updated by sled agent instance_id = a2a35ca1-1504-4997-8c2d-bbae69ee06b4 new_state = running propolis_id = 412bbee6-59ff-4b51-a632-312b856e6cad
3212022-10-21T04:29:24.679ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = PUT remote_addr = [fd00:1122:3344:101::1]:40945 req_id = 2c9097dd-3409-4126-993e-60eee47b3b13 response_code = 204 uri = /instances/a2a35ca1-1504-4997-8c2d-bbae69ee06b4
3222022-10-21T04:29:24.682ZINFOnexus (SEC): saga finished saga_id = 7d7329fd-5361-46bf-aa8f-66458b2fb962 saga_name = instance-create sec_id = e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
3232022-10-21T04:29:24.695ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:62430 req_id = c432d264-1dcd-4950-8d26-455ad6137d01 response_code = 201 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances
3242022-10-21T04:29:24.716ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = a05512a7-9863-4a3a-a797-8c267b3ec173 response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/external-ips
3252022-10-21T04:29:24.743ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = 354be4e8-1544-40a8-9167-f16eb01c4c9a response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/serial-console?from_start=0&max_bytes=10485760
3262022-10-21T04:29:26.725ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = GET remote_addr = [fd00:1122:3344:101::4]:59850 req_id = 716cd2c5-570f-4a9d-98b5-2857e809a491 response_code = 200 uri = /metrics/collect/e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
3272022-10-21T04:29:29.774ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = 644c2658-48b3-4d24-a4b0-eabafafc43f7 response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/serial-console?from_start=0&max_bytes=10485760
3282022-10-21T04:29:34.805ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = c68b6ab1-e0f3-4ec2-988c-a26b3d35f6ba response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/serial-console?from_start=0&max_bytes=10485760
3292022-10-21T04:29:36.725ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = GET remote_addr = [fd00:1122:3344:101::4]:59850 req_id = 5ab24e94-1d16-4609-997b-32bcc5222d31 response_code = 200 uri = /metrics/collect/e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
3302022-10-21T04:29:39.835ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = 2f74d4fd-3300-4529-8436-7dd7e893d577 response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/serial-console?from_start=0&max_bytes=10485760
3312022-10-21T04:29:44.866ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = f0e40331-74ce-4119-8c22-3e8c1166ebfa response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/serial-console?from_start=0&max_bytes=10485760
3322022-10-21T04:29:46.725ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = GET remote_addr = [fd00:1122:3344:101::4]:59850 req_id = 56a5cce0-f03a-44bb-9209-e49233c82e07 response_code = 200 uri = /metrics/collect/e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
3332022-10-21T04:29:49.896ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = 2477e440-a0ee-49e3-8a4f-28c523ce434e response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/serial-console?from_start=0&max_bytes=10485760
3342022-10-21T04:29:54.925ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = b2c6d264-ab4f-4de2-894e-70ef87aaaea1 response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/serial-console?from_start=0&max_bytes=10485760
3352022-10-21T04:29:56.725ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = GET remote_addr = [fd00:1122:3344:101::4]:59850 req_id = 7d631fe3-23b6-4f19-a7db-1fe314c2edc2 response_code = 200 uri = /metrics/collect/e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
3362022-10-21T04:29:59.954ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = ff9a3f69-b882-4875-9d0f-95b3f005b741 response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/serial-console?from_start=0&max_bytes=10485760
3372022-10-21T04:30:04.987ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = aa350bb5-d1e0-4e71-b8f7-a4a0f8c3c647 response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/serial-console?from_start=0&max_bytes=10485760
3382022-10-21T04:30:06.725ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = GET remote_addr = [fd00:1122:3344:101::4]:59850 req_id = 962bc1e1-8bd2-464b-91a4-1ec2144245d9 response_code = 200 uri = /metrics/collect/e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
3392022-10-21T04:30:10.019ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = 87495576-ef2c-42c3-bf26-cb3b4623a37e response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/serial-console?from_start=0&max_bytes=10485760
3402022-10-21T04:30:15.058ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = 2e4eb93e-d877-44bd-94c3-242ca4549d73 response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/serial-console?from_start=0&max_bytes=10485760
3412022-10-21T04:30:16.726ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = GET remote_addr = [fd00:1122:3344:101::4]:59850 req_id = 53f646ee-6655-4474-b7f3-b11ba40916b9 response_code = 200 uri = /metrics/collect/e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
3422022-10-21T04:30:20.096ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = bf5cd4a3-d9d5-4ff2-99d7-ddefd4f2b3ef response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/serial-console?from_start=0&max_bytes=10485760
3432022-10-21T04:30:25.137ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = 98155f85-64b4-4356-b4fe-fecfc14751b7 response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/serial-console?from_start=0&max_bytes=10485760
3442022-10-21T04:30:26.725ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = GET remote_addr = [fd00:1122:3344:101::4]:59850 req_id = 0dc3692d-c2af-4b10-97c9-146ff7082dd7 response_code = 200 uri = /metrics/collect/e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
3452022-10-21T04:30:30.179ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = f7ffad9c-1544-43a6-8b69-f58fe3e7ad21 response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/serial-console?from_start=0&max_bytes=10485760
3462022-10-21T04:30:35.222ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = 9ee8b516-85e1-4840-8d5e-37ec76012942 response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/serial-console?from_start=0&max_bytes=10485760
3472022-10-21T04:30:36.725ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = GET remote_addr = [fd00:1122:3344:101::4]:59850 req_id = 0fd92f02-c76b-4e90-8090-6b8ee6ccf5a5 response_code = 200 uri = /metrics/collect/e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
3482022-10-21T04:30:40.263ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = e8219940-da5b-4f88-8486-ed165159420d response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/serial-console?from_start=0&max_bytes=10485760
3492022-10-21T04:30:45.305ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = ff1b858f-de05-49fe-b2b9-e5c88b55e826 response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/serial-console?from_start=0&max_bytes=10485760
3502022-10-21T04:30:46.726ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = GET remote_addr = [fd00:1122:3344:101::4]:59850 req_id = d5ae476a-76e1-4d2a-98e3-eb6b5b119e07 response_code = 200 uri = /metrics/collect/e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
3512022-10-21T04:30:50.348ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = b43d7130-5886-475b-914f-c6dce524c1b6 response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/serial-console?from_start=0&max_bytes=10485760
3522022-10-21T04:30:55.392ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = 3b190edb-16d2-4d4b-9fb4-d0e768e1d229 response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/serial-console?from_start=0&max_bytes=10485760
3532022-10-21T04:30:56.725ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = GET remote_addr = [fd00:1122:3344:101::4]:59850 req_id = 2bea8464-bfef-4faa-acd7-4b949a0020c6 response_code = 200 uri = /metrics/collect/e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
3542022-10-21T04:31:00.437ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = 398af93a-6f22-4330-92b6-f036a3e0e6ee response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/serial-console?from_start=0&max_bytes=10485760
3552022-10-21T04:31:06.679ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = GET remote_addr = 192.168.1.199:62430 req_id = 8b852a9a-5a43-44c7-8d61-830dac13f965 response_code = 200 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/serial-console?max_bytes=1048576&most_recent=1048576
3562022-10-21T04:31:06.725ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = GET remote_addr = [fd00:1122:3344:101::4]:59850 req_id = 48af4b47-f901-4a3b-b139-90116f00c43c response_code = 200 uri = /metrics/collect/e6bff1ff-24fb-49dc-a54e-c6a350cd4d6c
3572022-10-21T04:31:06.831ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = POST remote_addr = 192.168.1.199:62430 req_id = 5f942a0d-e448-42d7-8b74-4def13ff35f3 response_code = 202 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab/instances/instance-dcd15bee87/stop
3582022-10-21T04:31:06.841ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::1]:45106
3592022-10-21T04:31:06.843ZINFOnexus: instance updated by sled agent instance_id = a2a35ca1-1504-4997-8c2d-bbae69ee06b4 new_state = stopping propolis_id = 412bbee6-59ff-4b51-a632-312b856e6cad
3602022-10-21T04:31:06.843ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = PUT remote_addr = [fd00:1122:3344:101::1]:45106 req_id = 44a84022-3910-4d96-9502-7b5abcaf18e2 response_code = 204 uri = /instances/a2a35ca1-1504-4997-8c2d-bbae69ee06b4
3612022-10-21T04:31:06.850ZINFOnexus (dropshot_internal): accepted connection local_addr = [fd00:1122:3344:101::3]:12221 remote_addr = [fd00:1122:3344:101::1]:59767
3622022-10-21T04:31:06.859ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = DELETE remote_addr = 192.168.1.199:62430 req_id = 3e54c9a7-71d3-48ea-baf7-cda63109d96a response_code = 204 uri = /organizations/org-bfd9317f72c/projects/proj-18c22810cab
3632022-10-21T04:31:06.870ZINFOnexus: instance updated by sled agent instance_id = a2a35ca1-1504-4997-8c2d-bbae69ee06b4 new_state = stopped propolis_id = 412bbee6-59ff-4b51-a632-312b856e6cad
3642022-10-21T04:31:06.870ZINFOnexus (dropshot_internal): request completed local_addr = [fd00:1122:3344:101::3]:12221 method = PUT remote_addr = [fd00:1122:3344:101::1]:59767 req_id = b3a24810-9936-4973-93c4-6749c981c058 response_code = 204 uri = /instances/a2a35ca1-1504-4997-8c2d-bbae69ee06b4
3652022-10-21T04:31:06.881ZINFOnexus (dropshot_external): request completed local_addr = 192.168.1.20:80 method = DELETE remote_addr = 192.168.1.199:62430 req_id = 39bc39ae-c21a-4834-aa0f-0ed082735edd response_code = 204 uri = /organizations/org-bfd9317f72c