-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogs.ts
More file actions
178 lines (152 loc) · 3.66 KB
/
logs.ts
File metadata and controls
178 lines (152 loc) · 3.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../core/resource';
import { APIPromise } from '../core/api-promise';
import { RequestOptions } from '../internal/request-options';
/**
* Endpoints for checking API quota and credits usage.
* These endpoints help you monitor your API usage and remaining quota.
*/
export class Logs extends APIResource {
/**
* Retrieve detailed API usage logs for your account.
*
* Returns a list of API calls with timestamps, features used, status codes, and
* credits consumed. Useful for monitoring usage patterns and debugging.
*
* **Legacy path:** `/logs` (still supported)
*
* @example
* ```ts
* const log = await client.logs.create();
* ```
*/
create(
body: LogCreateParams | null | undefined = {},
options?: RequestOptions,
): APIPromise<LogCreateResponse> {
return this._client.post('/v1/usage', { body, ...options });
}
/**
* Get aggregated usage statistics grouped by feature.
*
* Useful for understanding which API features are being used most and tracking
* usage trends.
*
* **Legacy path:** `/logs/summary` (still supported)
*
* @example
* ```ts
* const response = await client.logs.getSummary();
* ```
*/
getSummary(
body: LogGetSummaryParams | null | undefined = {},
options?: RequestOptions,
): APIPromise<LogGetSummaryResponse> {
return this._client.post('/v1/usage/summary', { body, ...options });
}
}
export interface LogCreateResponse {
/**
* Number of logs returned
*/
count?: number;
logs?: Array<LogCreateResponse.Log>;
status?: string;
}
export namespace LogCreateResponse {
export interface Log {
/**
* Credits consumed for this request
*/
credits?: number;
/**
* API feature used
*/
feature?: string;
/**
* API endpoint path
*/
path?: string;
/**
* Unique request identifier
*/
request_id?: string;
/**
* HTTP response status code
*/
status_code?: number;
/**
* When the request was made
*/
timestamp?: string;
}
}
export interface LogGetSummaryResponse {
status?: string;
summary?: LogGetSummaryResponse.Summary;
}
export namespace LogGetSummaryResponse {
export interface Summary {
/**
* Usage breakdown by feature
*/
by_feature?: Array<Summary.ByFeature>;
/**
* Total credits consumed in the period
*/
total_credits?: number;
/**
* Total API requests made in the period
*/
total_requests?: number;
}
export namespace Summary {
export interface ByFeature {
/**
* Credits consumed by this feature
*/
credits?: number;
/**
* API feature name
*/
feature?: string;
/**
* Number of requests for this feature
*/
requests?: number;
}
}
}
export interface LogCreateParams {
/**
* End time filter (ISO 8601). Defaults to now.
*/
end_time?: string;
/**
* Maximum number of logs to return
*/
limit?: number;
/**
* Start time filter (ISO 8601). Defaults to 30 days ago.
*/
start_time?: string;
}
export interface LogGetSummaryParams {
/**
* End time filter (ISO 8601). Defaults to now.
*/
end_time?: string;
/**
* Start time filter (ISO 8601). Defaults to start of current month.
*/
start_time?: string;
}
export declare namespace Logs {
export {
type LogCreateResponse as LogCreateResponse,
type LogGetSummaryResponse as LogGetSummaryResponse,
type LogCreateParams as LogCreateParams,
type LogGetSummaryParams as LogGetSummaryParams,
};
}