Skip to content

Instantly share code, notes, and snippets.

View arturgspb's full-sized avatar
🎯
Focusing

Artur Geraschenko arturgspb

🎯
Focusing
  • https://centra.ai
  • Russia, Saint-Petersburg
View GitHub Profile
@arturgspb
arturgspb / pg_current_queries_view_sql.md
Created February 21, 2023 13:37
PostgreSQL current queries view
CREATE OR REPLACE VIEW public.current_queries_view
 AS
 SELECT pg_stat_activity.pid,
    age(clock_timestamp(), pg_stat_activity.query_start) AS age,
    pg_stat_activity.wait_event_type,
    pg_stat_activity.wait_event,
    pg_stat_activity.usename,
    replace(pg_stat_activity.query, '
'::text, ' '::text) AS trimmed_one_line_query,
```xml
version: '3'
# docker network create --driver overlay cluster
networks:
cluster:
external: true
services:
pgmaster:
<link rel="import" href="../chart-js/chart-js.html">
<link rel="import" href="../google-map/google-map.html">
<link rel="import" href="../topeka-elements/category-images.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icons/av-icons.html">
<link rel="import" href="../paper-fab/paper-fab.html">
<link rel="import" href="../topeka-elements/theme.html">
<link rel="import" href="../topeka-elements/topeka-resources.html">
<link rel="import" href="../topeka-elements/topeka-app.html">
<link rel="import" href="../chart-js/chart-js.html">
<link rel="import" href="../topeka-elements/topeka-datasource.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-menu/core-submenu.html">
<link rel="import" href="../cool-clock/cool-clock.html">
<polymer-element name="my-element">
<template>
<style>