0.0.20240426 • Published 21 days ago

@maxim_mazurok/gapi.client.cloudtrace-v1 v0.0.20240426

Weekly downloads
-
License
MIT
Repository
github
Last release
21 days ago

TypeScript typings for Cloud Trace API v1

Sends application trace data to Cloud Trace for viewing. Trace data is collected for all App Engine applications by default. Trace data from other applications can be provided using this API. This library is used to interact with the Cloud Trace API directly. If you are looking to instrument your application for Cloud Trace, we recommend using OpenTelemetry. For detailed description please check documentation.

Installing

Install typings for Cloud Trace API:

npm install @types/gapi.client.cloudtrace-v1 --save-dev

Usage

You need to initialize Google API client in your code:

gapi.load('client', () => {
  // now we can use gapi.client
  // ...
});

Then load api client wrapper:

gapi.client.load(
  'https://cloudtrace.googleapis.com/$discovery/rest?version=v1',
  () => {
    // now we can use:
    // gapi.client.cloudtrace
  }
);
// Deprecated, use discovery document URL, see https://github.com/google/google-api-javascript-client/blob/master/docs/reference.md#----gapiclientloadname----version----callback--
gapi.client.load('cloudtrace', 'v1', () => {
  // now we can use:
  // gapi.client.cloudtrace
});

Don't forget to authenticate your client before sending any request to resources:

// declare client_id registered in Google Developers Console
var client_id = '',
  scope = [
    // See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
    'https://www.googleapis.com/auth/cloud-platform',

    // Write Trace data for a project or application
    'https://www.googleapis.com/auth/trace.append',

    // Read Trace data for a project or application
    'https://www.googleapis.com/auth/trace.readonly',
  ],
  immediate = true;
// ...

gapi.auth.authorize(
  {client_id: client_id, scope: scope, immediate: immediate},
  authResult => {
    if (authResult && !authResult.error) {
      /* handle successful authorization */
    } else {
      /* handle authorization error */
    }
  }
);

After that you can use Cloud Trace API resources:

/*
Sends new traces to Cloud Trace or updates existing traces. If the ID of a trace that you send matches that of an existing trace, any fields in the existing trace and its spans are overwritten by the provided values, and any new fields provided are merged with the existing trace data. If the ID does not match, a new trace is created.
*/
await gapi.client.cloudtrace.projects.patchTraces({projectId: 'projectId'});
0.0.20240426

21 days ago

0.0.20240419

28 days ago

0.0.20240412

1 month ago

0.0.20240329

2 months ago

0.0.20240322

2 months ago

0.0.20240315

2 months ago

0.0.20240301

3 months ago

0.0.20240223

3 months ago

0.0.20240209

3 months ago

0.0.20240126

4 months ago

0.0.20240119

4 months ago

0.0.20240104

4 months ago

0.0.20240102

5 months ago

0.0.20231207

5 months ago

0.0.20231130

6 months ago

0.0.20230816

9 months ago

0.0.20230810

9 months ago

0.0.20231109

6 months ago

0.0.20231031

7 months ago

0.0.20230928

8 months ago

0.0.20230920

8 months ago

0.0.20230720

10 months ago

0.0.20230803

10 months ago

0.0.20230727

10 months ago

0.0.20231102

7 months ago

0.0.20231026

7 months ago

0.0.20230914

8 months ago

0.0.20230713

10 months ago

0.0.20231012

7 months ago

0.0.20230907

8 months ago

0.0.20230706

11 months ago

0.0.20231005

7 months ago

0.0.20230622

11 months ago

0.0.20230511

1 year ago

0.0.20230518

12 months ago

0.0.20230608

11 months ago

0.0.20230601

12 months ago

0.0.20230504

1 year ago

0.0.20230427

1 year ago

0.0.20230413

1 year ago

0.0.20230323

1 year ago

0.0.20230420

1 year ago

0.0.20230309

1 year ago

0.0.20230406

1 year ago

0.0.20230330

1 year ago

0.0.20230126

1 year ago

0.0.20230209

1 year ago

0.0.20230221

1 year ago

0.0.20230118

1 year ago

0.0.20221202

1 year ago

0.0.20221103

2 years ago

0.0.20230105

1 year ago

0.0.20221110

2 years ago

0.0.20221209

1 year ago

0.0.20230112

1 year ago

0.0.20221020

2 years ago

0.0.20221101

2 years ago

0.0.20221013

2 years ago

0.0.20220921

2 years ago

0.0.20220817

2 years ago

0.0.20220908

2 years ago

0.0.20220831

2 years ago

0.0.20220824

2 years ago

0.0.20220915

2 years ago

0.0.20220810

2 years ago

0.0.20220728

2 years ago