---
title: "Gets the load information of the specified Service Fabric partition."
method: GET
path: "/Partitions/{partitionId}/$/GetLoadInformation"
tags: ["Partition"]
---

# Gets the load information of the specified Service Fabric partition.

`GET /Partitions/{partitionId}/$/GetLoadInformation`

Returns information about the load of a specified partition.
The response includes a list of load reports for a Service Fabric partition.
Each report includes the load metric name, value, and last reported time in UTC.

## Path parameters

- `partitionId` string, uuid, required

## Query parameters

- `api-version` '6.0', required
- `timeout` integer

## Response `200`

Information about the specified partition's last reported load metrics.

- PartitionLoadInformation — Represents load information for a partition, which contains the primary, secondary and auxiliary reported load metrics. In case there is no load reported, PartitionLoadInformation will contain the default load for the service of the partition. For default loads, LoadMetricReport's LastReportedUtc is set to 0.
  - `PartitionId` string, uuid — An internal ID used by Service Fabric to uniquely identify a partition. This is a randomly generated GUID when the service was created. The partition ID is unique and does not change for the lifetime of the service. If the same service was deleted and recreated the IDs of its partitions would be different.
  - `PrimaryLoadMetricReports` LoadMetricReport[] — Array of load reports from the primary replica for this partition.
    - `LastReportedUtc` string, date-time — Gets the UTC time when the load was reported.
    - `Name` string — The name of the load metric.
    - `Value` string, int32 — The value of the load metric. In future releases of Service Fabric this parameter will be deprecated in favor of CurrentValue.
    - `CurrentValue` string, double — The value of the load metric.
  - `SecondaryLoadMetricReports` LoadMetricReport[] — Array of aggregated load reports from all secondary replicas for this partition. Array only contains the latest reported load for each metric.
    - `LastReportedUtc` string, date-time — Gets the UTC time when the load was reported.
    - `Name` string — The name of the load metric.
    - `Value` string, int32 — The value of the load metric. In future releases of Service Fabric this parameter will be deprecated in favor of CurrentValue.
    - `CurrentValue` string, double — The value of the load metric.
  - `AuxiliaryLoadMetricReports` LoadMetricReport[] — Array of aggregated load reports from all auxiliary replicas for this partition. Array only contains the latest reported load for each metric.
    - `LastReportedUtc` string, date-time — Gets the UTC time when the load was reported.
    - `Name` string — The name of the load metric.
    - `Value` string, int32 — The value of the load metric. In future releases of Service Fabric this parameter will be deprecated in favor of CurrentValue.
    - `CurrentValue` string, double — The value of the load metric.

## Other responses

- `default` — The detailed error response.

---

[API](https://skmtc.net/azure/apis/servicefabric-servicefabric.md) · [All operations](https://skmtc.net/azure/apis/servicefabric-servicefabric/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/azure/servicefabric-servicefabric/revisions/8fd479ce0f16/schema)
