PostgreSQL statement metricset

edit

PostgreSQL statement metricset

edit

This functionality is in beta and is subject to change. The design and code is less mature than official GA features and is being provided as-is with no warranties. Beta features are not subject to the support SLA of official GA features.

This is the statement metricset of the PostgreSQL module.

Fields

edit

For a description of each field in the metricset, see the exported fields section.

Here is an example document generated by this metricset:

{
    "@timestamp": "2017-10-12T08:05:34.853Z",
    "beat": {
        "hostname": "host.example.com",
        "name": "host.example.com"
    },
    "metricset": {
        "host": "postgresql:5432",
        "module": "postgresql",
        "name": "statement",
        "rtt": 115
    },
    "postgresql": {
        "statement": {
            "user": {
                "id": 10
            },
            "database": {
                "oid": "12407"
            },
            "query": {
                "id":  "3240664890",
                "text": "SELECT pg_sleep(?);",
                "calls": "2",
                "rows": "2",
                "time": {
                    "total": 120066.497,
                    "min": 60029.533,
                    "max": 60036.964,
                    "mean": 60033.2485,
                    "stddev": 3.71549999999843
                },
                "memory": {
                    "shared": {
                        "hit": 0,
                        "read": 0,
                        "dirtied": 0,
                        "written": 0,
                    },
                    "local": {
                        "hit": 0,
                        "read": 0,
                        "dirtied": 0,
                        "written": 0,
                    },
                    "temp": {
                        "read": 0,
                        "written": 0,
                    }
                }
            }
        }
    }
}