_id
stringlengths
2
7
text
stringlengths
6
2.61k
title
stringclasses
1 value
c172900
// SetTeardown to assign a teardown function
c172901
// We will only wait on the children we have now. // We will not wait on children added subsequently. // this may change in the future.
c172902
// Ticker calls the given ProcessFunc every time the ticker fires. // This is sequentially rate limited, only one call will be in-flight at a time.
c172903
// TickerGo calls the given ProcessFunc every time the ticker fires. // This is not rate limited, multiple calls could be in-flight at the same time.
c172904
// Identify identifies a customer and sets their attributes
c172905
// Track sends a single event to Customer.io for the supplied user
c172906
// TrackAnonymous sends a single event to Customer.io for the anonymous user
c172907
// Delete deletes a customer
c172908
// AddDevice adds a device for a customer
c172909
// DeleteDevice deletes a device for a customer
c172910
// initLocales initializes language type list and Accept-Language header matcher.
c172911
// I18n is a middleware provides localization layer for your application. // Paramenter langs must be in the form of "en-US", "zh-CN", etc. // Otherwise it may not recognize browser input.
c172912
// FetchCheck retrieves check with passed cid.
c172913
// FetchChecks retrieves all checks available to the API Token.
c172914
// New returns a new Circonus API
c172915
// Get API request
c172916
// Post API request
c172917
// apiRequest manages retry strategy for exponential backoffs
c172918
// FetchGraph retrieves graph with passed cid.
c172919
// FetchGraphs retrieves all graphs available to the API Token.
c172920
// UpdateGraph updates passed graph.
c172921
// CreateGraph creates a new graph.
c172922
// DeleteGraph deletes passed graph.
c172923
// DeleteGraphByCID deletes graph with passed cid.
c172924
// FetchCheckBundle retrieves check bundle with passed cid.
c172925
// FetchCheckBundles retrieves all check bundles available to the API Token.
c172926
// UpdateCheckBundle updates passed check bundle.
c172927
// DeleteCheckBundle deletes passed check bundle.
c172928
// DeleteCheckBundleByCID deletes check bundle with passed cid.
c172929
// Gauge sets a gauge to a value
c172930
// SetGauge sets a gauge to a value
c172931
// AddGauge adds value to existing gauge
c172932
// RemoveGauge removes a gauge
c172933
// RemoveGaugeFunc removes a gauge function
c172934
// getGaugeType returns accurate resmon type for underlying type of gauge value
c172935
// FetchCheckBundleMetrics retrieves metrics for the check bundle with passed cid.
c172936
// UpdateCheckBundleMetrics updates passed metrics.
c172937
// Get Broker to use when creating a check
c172938
// Get CN of Broker associated with submission_url to satisfy no IP SANS in certs
c172939
// Select a broker for use when creating a check, if a specific broker // was not specified.
c172940
// Verify broker supports the check type to be used
c172941
// FetchMetricCluster retrieves metric cluster with passed cid.
c172942
// FetchMetricClusters retrieves all metric clusters available to API Token.
c172943
// UpdateMetricCluster updates passed metric cluster.
c172944
// CreateMetricCluster creates a new metric cluster.
c172945
// DeleteMetricCluster deletes passed metric cluster.
c172946
// DeleteMetricClusterByCID deletes metric cluster with passed cid.
c172947
// loadCACert loads the CA cert for the broker designated by the submission url
c172948
// fetchCert fetches CA certificate using Circonus API
c172949
// FetchAccounts retrieves all accounts available to the API Token.
c172950
// UpdateAccount updates passed account.
c172951
// FetchAnnotation retrieves annotation with passed cid.
c172952
// FetchAnnotations retrieves all annotations available to the API Token.
c172953
// UpdateAnnotation updates passed annotation.
c172954
// CreateAnnotation creates a new annotation.
c172955
// DeleteAnnotation deletes passed annotation.
c172956
// DeleteAnnotationByCID deletes annotation with passed cid.
c172957
// FetchOutlierReport retrieves outlier report with passed cid.
c172958
// FetchOutlierReports retrieves all outlier reports available to API Token.
c172959
// UpdateOutlierReport updates passed outlier report.
c172960
// CreateOutlierReport creates a new outlier report.
c172961
// DeleteOutlierReport deletes passed outlier report.
c172962
// DeleteOutlierReportByCID deletes outlier report with passed cid.
c172963
// FetchUsers retrieves all users available to API Token.
c172964
// UpdateUser updates passed user.
c172965
// SetMetricTags sets the tags for the named metric and flags a check update is needed
c172966
// AddMetricTags appends tags to any existing tags for the named metric and flags a check update is needed
c172967
// FetchMetric retrieves metric with passed cid.
c172968
// FetchMetrics retrieves all metrics available to API Token.
c172969
// UpdateMetric updates passed metric.
c172970
// FetchAcknowledgement retrieves acknowledgement with passed cid.
c172971
// FetchAcknowledgements retrieves all acknowledgements available to the API Token.
c172972
// UpdateAcknowledgement updates passed acknowledgement.
c172973
// CreateAcknowledgement creates a new acknowledgement.
c172974
// snapshot returns a copy of the values of all registered counters and gauges.
c172975
// Timing adds a value to a histogram
c172976
// RecordValue adds a value to a histogram
c172977
// RecordCountForValue adds count n for value to a histogram
c172978
// SetHistogramValue adds a value to a histogram
c172979
// RemoveHistogram removes a histogram
c172980
// NewHistogram returns a histogram instance.
c172981
// RecordValue records the given value to a histogram instance
c172982
// Search for a check bundle given a predetermined set of criteria
c172983
// Create a new check to receive metrics
c172984
// Create a dynamic secret to use with a new check
c172985
// FetchCheckBySubmissionURL fetch a check configuration by submission_url
c172986
// Initialize for sending metrics
c172987
// IsReady reflects if the check has been initialied and metrics can be sent to Circonus
c172988
// GetSubmissionURL returns submission url for circonus
c172989
// ResetTrap URL, force request to the API for the submission URL and broker ca cert
c172990
// RefreshTrap check when the last time the URL was reset, reset if needed
c172991
// FetchRuleSetGroup retrieves rule set group with passed cid.
c172992
// FetchRuleSetGroups retrieves all rule set groups available to API Token.
c172993
// UpdateRuleSetGroup updates passed rule set group.
c172994
// CreateRuleSetGroup creates a new rule set group.
c172995
// DeleteRuleSetGroup deletes passed rule set group.
c172996
// DeleteRuleSetGroupByCID deletes rule set group with passed cid.
c172997
// FetchDashboard retrieves dashboard with passed cid.
c172998
// FetchDashboards retrieves all dashboards available to the API Token.
c172999
// UpdateDashboard updates passed dashboard.