Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: rpc_endpoint_requests insert sql #162

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

ohko4711
Copy link

πŸ“ Summary

fix: #161

β›± Motivation and Context

rpc_endpoint_requests don't have filed ip_hash, save to db will failed

CREATE TABLE rpc_endpoint_requests(
    id uuid not null unique primary key default gen_random_uuid(),
    received_at timestamp with time zone not null,
    inserted_at timestamp with time zone not null default now(),
    request_duration_ms bigint not null,
    is_batch_request boolean,
    num_request_in_batch integer,
    http_method varchar(10) not null,
    http_url varchar(100) not null,
    http_query_param text,
    http_response_status integer,
    origin text,
    host text,
    error text
);

πŸ“š References


βœ… I have run these commands

  • make lint
  • make test
  • go mod tidy

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

ip_hash not exist in RequestEntry
1 participant