Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 4.13 KB

File metadata and controls

30 lines (25 loc) · 4.13 KB

CountSpansProjectsProjectIdSpansCountPostRequest

Example Usage

import { CountSpansProjectsProjectIdSpansCountPostRequest } from "galileo-generated/models/operations";

let value: CountSpansProjectsProjectIdSpansCountPostRequest = {
  projectId: "<value>",
  body: {
    logStreamId: "74aec44e-ec21-4c9f-a3e2-b2ab2b81b4db",
    filters: [
      {
        columnId: "<id>",
        operator: "eq",
        value: "example input",
        caseSensitive: true,
        type: "text",
      },
    ],
  },
};

Fields

Field Type Required Description Example
projectId string ✔️ N/A
body models.LogRecordsQueryCountRequest ✔️ N/A {
"filters": [
{
"case_sensitive": true,
"name": "input",
"operator": "eq",
"type": "text",
"value": "example input"
}
],
"log_stream_id": "74aec44e-ec21-4c9f-a3e2-b2ab2b81b4db"
}