This file contains 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
# HELP neo4j_system_cypher_replan_events_total Generated from Dropwizard metric import (metric=neo4j.system.cypher.replan_events, type=com.neo4j.metrics.metric.MetricsCounter) | |
# TYPE neo4j_system_cypher_replan_events_total counter | |
neo4j_system_cypher_replan_events_total 0.0 | |
# HELP neo4j_system_db_query_execution_failure_total Generated from Dropwizard metric import (metric=neo4j.system.db.query.execution.failure, type=com.codahale.metrics.Meter) | |
# TYPE neo4j_system_db_query_execution_failure_total counter | |
neo4j_system_db_query_execution_failure_total 0.0 | |
# HELP neo4j_system_transaction_active_write Generated from Dropwizard metric import (metric=neo4j.system.transaction.active_write, type=com.neo4j.metrics.source.db.TransactionMetrics$$Lambda$1093/0x0000000800982840) | |
# TYPE neo4j_system_transaction_active_write gauge | |
neo4j_system_transaction_active_write 0.0 | |
# HELP neo4j_vm_pause_time Generated from Dropwizard metric import (metric=neo4j.vm.pause_time, type=com.neo4j.metrics.source.jvm.PauseMetrics$$Lambda$14 |
This file contains 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
# TYPE envoy_cluster_assignment_stale counter | |
envoy_cluster_assignment_stale{envoy_cluster_name="service_envoyproxy_io"} 0 | |
# TYPE envoy_cluster_assignment_timeout_received counter | |
envoy_cluster_assignment_timeout_received{envoy_cluster_name="service_envoyproxy_io"} 0 | |
# TYPE envoy_cluster_bind_errors counter | |
envoy_cluster_bind_errors{envoy_cluster_name="service_envoyproxy_io"} 0 | |
# TYPE envoy_cluster_client_ssl_socket_factory_downstream_context_secrets_not_ready counter |
This file contains 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
# HELP sql_txn_begin_count_internal Number of SQL transaction BEGIN statements successfully executed (internal queries) | |
# TYPE sql_txn_begin_count_internal counter | |
sql_txn_begin_count_internal 0 | |
# HELP queue_replicate_transferlease Number of range lease transfers attempted by the replicate queue | |
# TYPE queue_replicate_transferlease counter | |
queue_replicate_transferlease{store="1"} 0 | |
# HELP gossip_connections_refused Number of refused incoming gossip connections | |
# TYPE gossip_connections_refused counter | |
gossip_connections_refused 0 | |
# HELP sqlliveness_is_alive_cache_hits Number of calls to IsAlive that return from the cache |
This file contains 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
# HELP caddy_admin_http_requests_total Counter of requests made to the Admin API's HTTP endpoints. | |
# TYPE caddy_admin_http_requests_total counter | |
caddy_admin_http_requests_total{code="200",handler="metrics",method="GET",path="/metrics"} 3 | |
# HELP caddy_http_request_duration_seconds Histogram of round-trip request durations. | |
# TYPE caddy_http_request_duration_seconds histogram | |
caddy_http_request_duration_seconds_bucket{code="200",handler="encode",method="GET",server="srv0",le="0.005"} 1 | |
caddy_http_request_duration_seconds_bucket{code="200",handler="encode",method="GET",server="srv0",le="0.01"} 1 | |
caddy_http_request_duration_seconds_bucket{code="200",handler="encode",method="GET",server="srv0",le="0.025"} 1 | |
caddy_http_request_duration_seconds_bucket{code="200",handler="encode",method="GET",server="srv0",le="0.05"} 1 | |
caddy_http_request_duration_seconds_bucket{code="200",handler="encode",method="GET",server="srv0",le="0.1"} 1 |
This file contains 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
# HELP builder_builds_failed_total Number of failed image builds | |
# TYPE builder_builds_failed_total counter | |
builder_builds_failed_total{reason="build_canceled"} 0 | |
builder_builds_failed_total{reason="build_target_not_reachable_error"} 0 | |
builder_builds_failed_total{reason="command_not_supported_error"} 0 | |
builder_builds_failed_total{reason="dockerfile_empty_error"} 0 | |
builder_builds_failed_total{reason="dockerfile_syntax_error"} 0 | |
builder_builds_failed_total{reason="error_processing_commands_error"} 0 | |
builder_builds_failed_total{reason="missing_onbuild_arguments_error"} 0 | |
builder_builds_failed_total{reason="unknown_instruction_error"} 0 |
This file contains 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
/* 1st level */ | |
ul li { | |
list-style-type: disc; | |
} | |
ol li { | |
list-style-type: decimal; | |
} | |
/* 2nd level */ | |
ul li ul li { |
This file contains 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
#!/bin/bash | |
# Private implementation of bar subcommand | |
_bar() { | |
echo "foo_value is $foo_value" | |
echo "flag_value is $flag_value" | |
echo "1: $1" | |
echo "2: $2" | |
echo "3: $3" | |
} |
This file contains 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
# paste these in | |
import contextlib | |
@contextlib.contextmanager | |
def profile(result_file_name=None): | |
import cProfile | |
import pstats | |
import sys | |
pr = cProfile.Profile() |
This file contains 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
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-input/core-input.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; |
This file contains 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
<link rel="import" href="../core-drawer-panel/core-drawer-panel.html"> | |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; |
NewerOlder