You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
String from ="from_example"; // String | The series of data returned starts from this timestamp (Unix seconds). Defaults to the beginning of the current month.
211
+
String to ="to_example"; // String | The series of data returned ends at this timestamp (Unix seconds). Defaults to the current time.
212
+
try {
213
+
SeriesIntervalsRep result = apiInstance.getExperimentationKeysUsage(from, to);
214
+
System.out.println(result);
215
+
} catch (ApiException e) {
216
+
System.err.println("Exception when calling AccountUsageBetaApi#getExperimentationKeysUsage");
|**from**|**String**| The series of data returned starts from this timestamp (Unix seconds). Defaults to the beginning of the current month. |[optional]|
231
+
|**to**|**String**| The series of data returned ends at this timestamp (Unix seconds). Defaults to the current time. |[optional]|
232
+
233
+
### Return type
234
+
235
+
[**SeriesIntervalsRep**](SeriesIntervalsRep.md)
236
+
237
+
### Authorization
238
+
239
+
[ApiKey](../README.md#ApiKey)
240
+
241
+
### HTTP request headers
242
+
243
+
-**Content-Type**: Not defined
244
+
-**Accept**: application/json
245
+
246
+
### HTTP response details
247
+
| Status code | Description | Response headers |
248
+
|-------------|-------------|------------------|
249
+
|**200**| Usage response | - |
250
+
|**400**| Invalid request | - |
251
+
|**401**| Invalid access token | - |
252
+
|**403**| Forbidden | - |
253
+
|**429**| Rate limited | - |
254
+
|**503**| Service unavailable | - |
255
+
179
256
<aname="getMauSdksByType"></a>
180
257
# **getMauSdksByType**
181
258
> SdkListRep getMauSdksByType(from, to, sdktype)
182
259
183
260
Get MAU SDKs by type
184
261
185
-
Get a list of SDKs. These are all of the SDKs that have connected to LaunchDarkly by monthly active users (MAU) in the requested time period.
262
+
Get a list of SDKs. These are all of the SDKs that have connected to LaunchDarkly by monthly active users (MAU) in the requested time period.<br/><br/>Endpoints for retrieving monthly active users (MAU) do not return information about active context instances. After you have upgraded your LaunchDarkly SDK to use contexts instead of users, you should not rely on this endpoint. Use [Get client-side monthly context instances uage](/tag/Account-usage-(beta)#operation/getCMCIUsage) instead. To learn more, read [Account usage metrics](https://docs.launchdarkly.com/home/billing/usage-metrics).
186
263
187
264
### Example
188
265
```java
@@ -259,7 +336,7 @@ public class Example {
259
336
260
337
Get MAU usage
261
338
262
-
Get a time-series array of the number of monthly active users (MAU) seen by LaunchDarkly from your account. The granularity is always daily.
339
+
Get a time-series array of the number of monthly active users (MAU) seen by LaunchDarkly from your account. The granularity is always daily.<br/><br/>Endpoints for retrieving monthly active users (MAU) do not return information about active context instances. After you have upgraded your LaunchDarkly SDK to use contexts instead of users, you should not rely on this endpoint. Use [Get client-side monthly context instances uage](/tag/Account-usage-(beta)#operation/getCMCIUsage) instead. To learn more, read [Account usage metrics](https://docs.launchdarkly.com/home/billing/usage-metrics).
263
340
264
341
### Example
265
342
```java
@@ -346,7 +423,7 @@ public class Example {
346
423
347
424
Get MAU usage by category
348
425
349
-
Get time-series arrays of the number of monthly active users (MAU) seen by LaunchDarkly from your account, broken down by the category of users. The category is either `browser`, `mobile`, or `backend`.
426
+
Get time-series arrays of the number of monthly active users (MAU) seen by LaunchDarkly from your account, broken down by the category of users. The category is either `browser`, `mobile`, or `backend`.<br/><br/>Endpoints for retrieving monthly active users (MAU) do not return information about active context instances. After you have upgraded your LaunchDarkly SDK to use contexts instead of users, you should not rely on this endpoint. Use [Get client-side monthly context instances uage](/tag/Account-usage-(beta)#operation/getCMCIUsage) instead. To learn more, read [Account usage metrics](https://docs.launchdarkly.com/home/billing/usage-metrics).
0 commit comments