This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Java Profiling (GC) | |
charts: | |
- name: OldGen Collections | |
type: line | |
streams: | |
- summary_function: average | |
downsample_function: average | |
tags: | |
- name: "@host" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
collector: | |
sqlserver: | |
all: | |
# Specify instances to monitor with a comma-delimited list of connection strings. | |
# All connection parameters are optional. | |
# By default, the host is localhost, listening on default port, TCP 1433. | |
# for Windows, the user is the currently running AD user (SSO). | |
# See https://github.com/denisenkom/go-mssqldb for detailed connection | |
# parameters. | |
servers: | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Service Comparison | |
default_tag_set_id: | |
charts: | |
- name: Response Size | |
type: line | |
streams: | |
- group_function: average | |
summary_function: average | |
tags: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
import requests | |
def read_questdb(query, host, per_page = 10000, max_records = None): | |
""" | |
Sends a SQL query to a specified host. | |
Parameters | |
---------------- |
OlderNewer