Package uptimerobot. October 22, 2015
|
|
|
- Augustus Hopkins
- 9 years ago
- Views:
Transcription
1 Type Package Version Title Access the UptimeRobot Ping API Package uptimerobot October 22, 2015 Provide a set of wrappers to call all the endpoints of UptimeRobot API which includes various kind of ping, keep-alive and speed tests. See < for more information. Date URL BugReports Depends R (>= 3.0) Imports rjson, RCurl, plyr Suggests testthat License MIT + file LICENSE NeedsCompilation no BuildKeepEmpty TRUE Author [aut, cre] Maintainer <[email protected]> Repository CRAN Date/Publication :23:18 R topics documented: uptimerobot.account.details uptimerobot.contact.delete uptimerobot.contact.new uptimerobot.contacts uptimerobot.fields uptimerobot.monitor.contacts uptimerobot.monitor.delete uptimerobot.monitor.edit
2 2 uptimerobot.account.details uptimerobot.monitor.logs uptimerobot.monitor.new uptimerobot.monitor.reset uptimerobot.monitor.responses uptimerobot.monitors Index 19 uptimerobot.account.details Get the account details for who is linked to the given API key uptimerobot.account.details returns a list or a vector with the account details connected to the given api key. uptimerobot.account.details(, unlist = FALSE) unlist string with a valid key for connecting to Uptimerobot API. logical. Set to TRUE to unlist the output to a named vector, FALSE to get a named list. A list or a vector with the account details. # Let s assume the is available into the environment variable KEY # Returns details as a list details.list <- uptimerobot.account.details() # Returns details as a vector details.num <- uptimerobot.account.details(, unlist = TRUE)
3 uptimerobot.contact.delete 3 uptimerobot.contact.delete Delete an alert contact uptimerobot.contact.delete removes an alert contanct, unlinking from all the registered monitors. uptimerobot.contact.delete(, id) id string with a valid key for connecting to Uptimerobot API. numeric or integer with the ID of the contact to delete. The function returns TRUE in case success. An error is thrown otherwise. # Let s assume the is available into the environment variable KEY # Delete the contact with id= if(uptimerobot.contact.delete(, ){ message("alert contact successfully deleted!") }
4 4 uptimerobot.contact.new uptimerobot.contact.new Add a new alert contact uptimerobot.contact.new creates a new alert contact with the given properties. uptimerobot.contact.new(, type, value, friendly.name) type value friendly.name string with a valid key for connecting to Uptimerobot API. string or numeric with the type of the contact. You can use both the value (string) or the index (numeric) here. string with the value of the contact (ie. the address). string the friendly (screen) name of the contact. Details The alert contacts are whom to be notified when the monitor goes up/down. The index lookup keys and values are available on the Uptimerobot API page on com/api The function returns the ID of the newly created contact in case success. An error is thrown otherwise. See Also uptimerobot.contacts, uptimerobot.contact.delete # Let s assume the is available into the environment variable KEY # Create a new contact and get the ID contact.new <- uptimerobot.contact.new(, type = " ", value = "[email protected]", "John Doe")
5 uptimerobot.contacts 5 # Get informations about this new contact contact.detail <- uptimerobot.contacts(, contacts = contact.new) uptimerobot.contacts Get general informations about the alert contacts uptimerobot.contacts extracts a dataset with general informations for a set of contacts used to be alert in case of up/down of the given monitors. uptimerobot.contacts(, contacts = NULL, limit = 50, offset = 0, fields = uptimerobot.fields("contact")$typical) contacts limit offset fields A valid key for connecting to UptimeRobors public API. vector or comma-delimited string with the IDs of the contacts to get. If the argument is NULL or missing, all the available contacts will be returned. An integer value used for pagination. Defines the max number of records to return in each page. Default and max. is 50. An integer value to set the index of the first monitor to get (used for pagination). vector or comma-delimited string with the general informations to include in the output dataset. You may use the helper function uptimerobot.fields if you don t want to manually compile the list of fields. Details The alert contacts are whom to be notified when the monitor goes up/down. If a vector of contact IDs is not given, the function will return data for all the available contacts. The API uses pagination and returns no more than 50 contacts on each page. Use limit and offset to set a different number of monitors to get on each page and to move between pages. Leave default values to get all the data. A dataset with general informations about the contacts.
6 6 uptimerobot.fields See Also uptimerobot.monitors # Let s assume the is available into the environment variable KEY # Returns all the contacts with a default set of attributes contacts.df <- uptimerobot.contacts() # Returns all the contacts and all the attributes contacts.full.df <- uptimerobot.contacts(, fields=uptimerobot.fields("contact")$full)) # Returns only the two contacts with ID: 1234, 5678 contacts.df <- uptimerobot.contacts(, c("1234", "5678")) uptimerobot.fields Get a list of the available fields for various endpoints uptimerobots.fields returns a list of vectors of available fields for commodity uses. Use it to avoid manually typing long list of fields in vectors or comma-delimited strings when used in various endpoints. uptimerobot.fields(type) type string with the type of fields to be reported. Only monitor and contact are currently supported. Details Use the type parameter to choose which set of fields to return in a list of vectors. These endpoints are currently supported: monitor and contact.
7 uptimerobot.monitor.contacts 7 The function returns a list of 3 elements which in turn contains a vector of available fields for a given set each. The returned elements are: See Also 1. typical returns a typical set of fields, used in most situations; 2. full returns the full set of available fields, including passwords and other potentially confidential data; 3. compact return a minimal set of fields. uptimerobot.monitors, uptimerobot.contacts uptimerobot.monitor.contacts Get contacts informations for one or more monitors uptimerobot.monitor.contacts return a dataset with all the alert contacts that will be triggered when a log is collected for the given monitors IDs. uptimerobot.monitor.contacts(, monitors, limit = 50, offset = 0) monitors limit offset A valid key for connecting to UptimeRobors public API. vector or comma-delimited string with the IDs of the monitors to get. An integer value used for pagination. Defines the max number of records to return in each page. Default and max. is 50. An integer value to set the index of the first monitor to get (used for pagination). Details The API uses pagination and returns no more than 50 monitors on each page. Use limit and offset to set a different number of monitors to get on each page and to move between pages. Leave default values to get all the data. A dataset with the alert contacts.
8 8 uptimerobot.monitor.delete See Also uptimerobot.monitors, uptimerobot.monitor.logs, uptimerobot.monitor.responses # Let s assume the is available into the environment variable KEY # Returns all the monitors IDs. Since the function always return a data.frame # (even if you ask only for a column), you have to reference the column to get a character vector. monitors.id <- uptimerobot.monitors(, fields="id")$id # Returns all the contacts registered for the given monitors logs.df <- uptimerobot.monitor.contacts(, monitors=monitors.id) uptimerobot.monitor.delete Delete a monitor uptimerobot.monitor.delete remove a monitor and all existing statistics of it. uptimerobot.monitor.delete(, id) id string with a valid key for connecting to Uptimerobot API. numeric or integer with the ID of the monitor to delete. The function returns TRUE in case success. An error is thrown otherwise.
9 uptimerobot.monitor.edit 9 # Let s assume the is available into the environment variable KEY # Create a monitor and get its monitor.id monitor.id <- uptimerobot.monitor.new(, friendly.name="open Analytics", url=" type="http" ) # Change the friendly name of the monitor if(uptimerobot.monitor.edit(, monitor.id, friendly.name="open Analytics - gabrielebaldassarre.com" ){ message("monitor has been successfully edited!") } # Delete the just-made monitor if(uptimerobot.monitor.delete(, monitor.id){ message("monitor has been successfully deleted!") } uptimerobot.monitor.edit Edit a monitor uptimerobot.monitor.edit edits the properties for an existing monitor. uptimerobot.monitor.edit(, id, friendly.name = NULL, url = NULL, activate = TRUE, subtype = NULL, port = NULL, interval = NULL, keyword.type = NULL, keyword.value = NULL, HTTP.username = NULL, HTTP.password = NULL, alert.contacts = NULL) id friendly.name url string with a valid key for connecting to Uptimerobot API. numeric or integer with the ID of the monitor to edit. string the friendly (screen) name of the monitor. string with the URL/IP of the monitor.
10 10 uptimerobot.monitor.edit activate subtype port Details interval keyword.type keyword.value HTTP.username HTTP.password logical to set the status of the monitor. Set to TRUE to start the monitor or FALSE to put it in paused state. string used only for "Port monitoring" to set which pre-defined port/service is monitored or if a custom port is monitored. You can use both the friendly name (string) or the index (integer) here. string used only for "Port monitoring" to set the port monitored. integer with the interval for the monitoring check (in minutes). required string in Keyword monitoring". string with the value of the keyword (required for keyword monitoring). string used for password-protected web pages (HTTP Basic Auth). Set to empty string to erase the current username. Available for HTTP and keyword monitoring. string used for password-protected web pages (HTTP Basic Auth). Set to empty string to erase the current password.available for HTTP and keyword monitoring. alert.contacts character vector or data frame with the IDs to alert each with their threshold and recurrence values. If a property has not to be updated, just omit it from the parameters or set to NA. To erase the value of a property, set it to an empty string, ie "", instead (not NA or NULL!). The type of a monitor can not be edited (like changing a HTTP monitor into a Port monitor). The alert contacts are whom to be notified when the monitor goes up/down. Multiple alert contact IDs can be sent in a character vector or in a data frame. If you pass alert contact IDs in a vector, each element must be formatted in the form <id>_<threshold>_<recurrence> (note the underscores). If you prefer to format it as a data.frame, it must have these three columns: id, threshold, recurrence, numeric or integer. Order of the columns doesn t matter. Please note that thresholds and recurrences can be omitted (default to zero) and, as they are only available in the Pro Plan, they are always 0 in the Free Plan. The function returns TRUE in case success. An error is thrown otherwise. # Let s assume the is available into the environment variable KEY # Create a monitor and get its monitor.id
11 uptimerobot.monitor.logs 11 monitor.id <- uptimerobot.monitor.new(, friendly.name="open Analytics", url=" type="http" ) # Change the friendly name of the monitor if(uptimerobot.monitor.edit(, monitor.id, friendly.name="open Analytics - gabrielebaldassarre.com" ){ message("monitor has been successfully edited!") } # Delete the just-made monitor if(uptimerobot.monitor.delete(, monitor.id){ message("monitor has been successfully deleted!") } uptimerobot.monitor.logs Get log records for one or more monitors uptimerobot.monitor.logs return a dataset with all logged messages for the given monitors IDs. uptimerobot.monitor.logs(, monitors, limit = 50, offset = 0) monitors limit offset A valid key for connecting to UptimeRobors public API. vector or comma-delimited string with the IDs of the monitors to get. An integer value used for pagination. Defines the max number of records to return in each page. Default and max. is 50. An integer value to set the index of the first monitor to get (used for pagination). Details The API uses pagination and returns no more than 50 monitors on each page. Use limit and offset to set a different number of monitors to get on each page and to move between pages. Leave default values to get all the data. A dataset with the log events for the given monitors.
12 12 uptimerobot.monitor.new See Also uptimerobot.monitors, uptimerobot.monitor.responses, uptimerobot.monitor.contacts # Let s assume the is available into the environment variable KEY # Returns all the monitors IDs. Since the function always return a data.frame # (even if you ask only for a column), you have to reference the column to get a character vector. monitors.id <- uptimerobot.monitors(, fields="id")$id # Returns all the log events for the given monitors logs.df <- uptimerobot.monitor.logs(, monitors=monitors.id) uptimerobot.monitor.new Add a new monitor uptimerobot.monitor.new creates a new monitor with the given properties. uptimerobot.monitor.new(, friendly.name, url, type, subtype = NULL, port = NULL, interval = 5, keyword.type = NULL, keyword.value = NULL, HTTP.username = NULL, HTTP.password = NULL, alert.contacts = NULL) friendly.name url type subtype port string with a valid key for connecting to Uptimerobot API. string the friendly (screen) name of the monitor. string with the URL/IP of the monitor. string or integer with the type of the monitor. You can use both the friendly name (string) or the index (integer) here. string used only for "Port monitoring" to set which pre-defined port/service is monitored or if a custom port is monitored. You can use both the friendly name (string) or the index (integer) here. string used only for "Port monitoring" to set the port monitored.
13 uptimerobot.monitor.new 13 Details interval keyword.type keyword.value HTTP.username HTTP.password integer with the interval for the monitoring check (in minutes). required string in Keyword monitoring". string with the value of the keyword (required for keyword monitoring). string used for password-protected web pages (HTTP Basic Auth). Available for HTTP and keyword monitoring. string used for password-protected web pages (HTTP Basic Auth). Available for HTTP and keyword monitoring. alert.contacts character vector or data frame with the IDs to alert each with their threshold and recurrence values. The alert contacts are whom to be notified when the monitor goes up/down. Multiple alert contact IDs can be sent in a character vector or in a data frame. If you pass alert contact IDs in a vector, each element must be formatted in the form <id>_<threshold>_<recurrence> (note the underscores). If you prefer to format it as a data.frame, it must have these three columns: id, threshold, recurrence, numeric or integer. Order of the columns doesn t matter. Please note that thresholds and recurrences can be omitted (default to zero) and, as they are only available in the Pro Plan, they are always 0 in the Free Plan. A numeric with the ID of the newly created monitor in case of success. An error is thrown otherwise. # Let s assume the is available into the environment variable KEY # Create a monitor and get its monitor.id monitor.id <- uptimerobot.monitor.new(, friendly.name="open Analytics", url=" type="http" ) # Change the friendly name of the monitor if(uptimerobot.monitor.edit(, monitor.id, friendly.name="open Analytics - gabrielebaldassarre.com" ){ message("monitor has been successfully edited!") } # Delete the just-made monitor
14 14 uptimerobot.monitor.reset if(uptimerobot.monitor.delete(, monitor.id){ message("monitor has been successfully deleted!") } uptimerobot.monitor.reset Reset a monitor uptimerobot.monitor.reset remove all the statistics and logs associated to a monitor ID. uptimerobot.monitor.reset(, id) id string with a valid key for connecting to Uptimerobot API. numeric or integer with the ID of the monitor to delete. The function returns TRUE in case success. An error is thrown otherwise. # Let s assume the is available into the environment variable KEY # Get a list of all available monitors, and take the first id monitors.id <- uptimerobot.monitors(, fields="id")[1,1] # Reset the stats for that monitor uptimerobot.monitor.reset(, monitor.id)
15 uptimerobot.monitor.responses 15 uptimerobot.monitor.responses Get response times for one or more monitors uptimerobot.monitor.responses returns a dataset with all the response times for the given monitors IDs. uptimerobot.monitor.responses(, monitors, limit = 50, offset = 0) monitors limit offset A valid key for connecting to UptimeRobors public API. vector or comma-delimited string with the IDs of the monitors to get. An integer value used for pagination. Defines the max number of records to return in each page. Default and max. is 50. An integer value to set the index of the first monitor to get (used for pagination). Details The API uses pagination and returns no more than 50 monitors on each page. Use limit and offset to set a different number of monitors to get on each page and to move between pages. Leave default values to get all the data. A dataset with the response times for the given monitors. See Also uptimerobot.monitors, uptimerobot.monitor.logs, uptimerobot.monitor.contacts # Let s assume the is available into the environment variable KEY # Returns all the monitors IDs. Since the function always return a data.frame # (even if you ask only for a column), you have to reference the column to get a character vector. monitors.id <- uptimerobot.monitors(, fields="id")$id
16 16 uptimerobot.monitors # Returns all the ping events for the given monitors logs.df <- uptimerobot.monitor.responses(, monitors=monitors.id) uptimerobot.monitors Get general informations about monitors uptimerobots.monitors.responses return a dataset with general informations for a set of monitors. uptimerobot.monitors(, monitors = NULL, types = NULL, statuses = NULL, search = NULL, summary = list(), limit = 50, offset = 0, fields = uptimerobot.fields("monitor")$typical) monitors types statuses search summary limit offset fields A valid key for connecting to UptimeRobors public API. vector or comma-delimited string with the IDs of the monitors to get. If not used or set to NULL, will return all monitors in an account. vector or comma-delimited string of monitor types. If not used or set to NULL, the function will return all monitors types (HTTP, keyword, ping..) in an account. Else, it is possible to define any number of monitor types. You can use both the friendly name (string) or the index (integer) here. vector or comma-delimited string of monitor statuses. If not used or set to NULL, the function will return all monitors statuses (up, down, paused) in an account. Else, it is possible to define any number of monitor statuses. You can use both the friendly name (string) or the index (integer) here. An optional keyword of to search within monitor URL or friendly name to get filtered results. list of logical values to flag summary indicators to add to the output dataset. An integer value used for pagination. Defines the max number of records to return in each page. Default and max. is 50. An integer value to set the index of the first monitor to get (used for pagination). vector or comma-delimited string with the general informations to include in the output dataset. You may want to use the helper function uptimerobot.fields if you don t want to manually compile the list of fields.
17 uptimerobot.monitors 17 Details If a vector of monitor is not given, the function will return data for all the available monitors. summary parameter expect a lists of three named logic values that set which columns of additional statistics for each monitor must be added to output dataset for each available monitor. These are summary values only, as the instances are obtained using a set of dedicated functions. 1. response.times set to TRUE to add a column with the number of pings with response times available for the monitor to the output. These values can be queried using uptimerobot.monitor.responses function. 2. log.records set to TRUE to add a column with the number of log entries recorded for the monitor to the output. These records can be queried using uptimerobot.monitor.logs function. 3. alert.contacts set to TRUE to add a column with the number of alert contacts binded to the monitor to the output. Detailed informations about these contacts can be queried using uptimerobot.monitor.contacts function. You may just add the elements you want to include into the list, as they default to FALSE if missing. Set an empty list to exclude all the summary statistics from the output. The API uses pagination and returns no more than 50 monitors on each page. Use limit and offset to set a different number of monitors to get on each page and to move between pages. Leave default values to get all the data. A dataset with general informations about the given monitors See Also uptimerobot.monitor.responses, uptimerobot.monitor.logs, uptimerobot.monitor.contacts # Let s assume the is available into the environment variable KEY # Returns all the monitors with a default set of attributes monitors.df <- uptimerobot.monitors() # # Returns all the monitors of keyword type monitors.kwd..df <- uptimerobot.monitors(, type="keyword") # Returns all the monitors and all the attributes monitors.full.df <- uptimerobot.monitors(, fields=uptimerobot.fields("monitor")$full)) # Returns only the two monitors with ID: 1234, 5678
18 18 uptimerobot.monitors monitors.df <- uptimerobot.monitors(, c("1234", "5678"))
19 Index uptimerobot.account.details, 2 uptimerobot.contact.delete, 3, 4 uptimerobot.contact.new, 4 uptimerobot.contacts, 4, 5, 7 uptimerobot.fields, 5, 6, 16 uptimerobot.monitor.contacts, 7, 12, 15, 17 uptimerobot.monitor.delete, 8 uptimerobot.monitor.edit, 9 uptimerobot.monitor.logs, 8, 11, 15, 17 uptimerobot.monitor.new, 12 uptimerobot.monitor.reset, 14 uptimerobot.monitor.responses, 8, 12, 15, 17 uptimerobot.monitors, 6 8, 12, 15, 16 19
Package retrosheet. April 13, 2015
Type Package Package retrosheet April 13, 2015 Title Import Professional Baseball Data from 'Retrosheet' Version 1.0.2 Date 2015-03-17 Maintainer Richard Scriven A collection of tools
Package OECD. R topics documented: January 17, 2016. Type Package Title Search and Extract Data from the OECD Version 0.2.
Type Package Title Search and Extract Data from the OECD Version 0.2.2 Date 2016-01-17 Package OECD January 17, 2016 Search and extract data from the OECD. License CC0 URL https://www.github.com/expersso/oecd
Package searchconsoler
Title Google Search Console R Client Version 0.2.0 Package searchconsoler April 3, 2016 Provides an interface with the Google Search Console, formally called Google Webmaster Tools. URL https://github.com/markedmondson1234/searchconsoler
Package TSfame. February 15, 2013
Package TSfame February 15, 2013 Version 2012.8-1 Title TSdbi extensions for fame Description TSfame provides a fame interface for TSdbi. Comprehensive examples of all the TS* packages is provided in the
Package urltools. October 11, 2015
Type Package Package urltools October 11, 2015 Title Vectorised Tools for URL Handling and Parsing Version 1.3.2 Date 2015-10-09 Author Oliver Keyes [aut, cre], Jay Jacobs [aut, cre], Mark Greenaway [ctb],
Package sjdbc. R topics documented: February 20, 2015
Package sjdbc February 20, 2015 Version 1.5.0-71 Title JDBC Driver Interface Author TIBCO Software Inc. Maintainer Stephen Kaluzny Provides a database-independent JDBC interface. License
Package pinnacle.api
Package pinnacle.api September 18, 2015 Type Package Version 1.89 Title A Wrapper for the Pinnacle Sports API URL https://github.com/marcoblume/pinnacle.api Author Marco Blume, Nicholas Jhirad, Amine Gassem
Package sendmailr. February 20, 2015
Version 1.2-1 Title send email using R Package sendmailr February 20, 2015 Package contains a simple SMTP client which provides a portable solution for sending email, including attachment, from within
Package WikipediR. January 13, 2016
Type Package Title A MediaWiki API Wrapper Version 1.3.0 Date 2016-01-12 Author Oliver Keyes Package WikipediR January 13, 2016 Maintainer Oliver Keyes A wrapper for the MediaWiki
Package dsmodellingclient
Package dsmodellingclient Maintainer Author Version 4.1.0 License GPL-3 August 20, 2015 Title DataSHIELD client site functions for statistical modelling DataSHIELD
Package AzureML. August 15, 2015
Version 0.1.1 Date 2015-08-14 Type Package Package AzureML August 15, 2015 Title Discover, Publish and Consume Web Services on Microsoft Azure Machine Learning Maintainer Raymond Laghaeian
Package cgdsr. August 27, 2015
Type Package Package cgdsr August 27, 2015 Title R-Based API for Accessing the MSKCC Cancer Genomics Data Server (CGDS) Version 1.2.5 Date 2015-08-25 Author Anders Jacobsen Maintainer Augustin Luna
Package dsstatsclient
Maintainer Author Version 4.1.0 License GPL-3 Package dsstatsclient Title DataSHIELD client site stattistical functions August 20, 2015 DataSHIELD client site
Package R4CDISC. September 5, 2015
Type Package Title Read CDISC Data Files Version 0.4 Date 2015-9-5 Depends R (>= 3.0.3, XML Author Package R4CDISC September 5, 2015 Maintainer URL https://github.com/i-akiya/r4cdisc
Package jrvfinance. R topics documented: October 6, 2015
Package jrvfinance October 6, 2015 Title Basic Finance; NPV/IRR/Annuities/Bond-Pricing; Black Scholes Version 1.03 Implements the basic financial analysis functions similar to (but not identical to) what
Package RCassandra. R topics documented: February 19, 2015. Version 0.1-3 Title R/Cassandra interface
Version 0.1-3 Title R/Cassandra interface Package RCassandra February 19, 2015 Author Simon Urbanek Maintainer Simon Urbanek This packages provides
Cloud Elements ecommerce Hub Provisioning Guide API Version 2.0 BETA
Cloud Elements ecommerce Hub Provisioning Guide API Version 2.0 BETA Page 1 Introduction The ecommerce Hub provides a uniform API to allow applications to use various endpoints such as Shopify. The following
orrelog SNMP Trap Monitor Software Users Manual
orrelog SNMP Trap Monitor Software Users Manual http://www.correlog.com mailto:[email protected] CorreLog, SNMP Trap Monitor Software Manual Copyright 2008-2015, CorreLog, Inc. All rights reserved. No
Package packrat. R topics documented: March 28, 2016. Type Package
Type Package Package packrat March 28, 2016 Title A Dependency Management System for Projects and their R Package Dependencies Version 0.4.7-1 Author Kevin Ushey, Jonathan McPherson, Joe Cheng, Aron Atkins,
Package bizdays. March 13, 2015
Title Business Days Calculations and Utilities Package bizdays March 13, 2015 Business days culations based on a list of holidays and nonworking weekdays. Quite useful for fixed income and derivatives
SnapLogic Salesforce Snap Reference
SnapLogic Salesforce Snap Reference Document Release: October 2012 SnapLogic, Inc. 71 East Third Avenue San Mateo, California 94401 U.S.A. www.snaplogic.com Copyright Information 2012 SnapLogic, Inc. All
Package tagcloud. R topics documented: July 3, 2015
Package tagcloud July 3, 2015 Type Package Title Tag Clouds Version 0.6 Date 2015-07-02 Author January Weiner Maintainer January Weiner Description Generating Tag and Word Clouds.
Package httprequest. R topics documented: February 20, 2015
Version 0.0.10 Date 2014-09-29 Title Basic HTTP Request Author Eryk Witold Wolski, Andreas Westfeld Package httprequest February 20, 2015 Maintainer Andreas Westfeld HTTP
Package benford.analysis
Type Package Package benford.analysis November 17, 2015 Title Benford Analysis for Data Validation and Forensic Analytics Version 0.1.3 Author Carlos Cinelli Maintainer Carlos Cinelli
Wave Analytics Data Integration
Wave Analytics Data Integration Salesforce, Spring 16 @salesforcedocs Last updated: April 28, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of
Package translater. R topics documented: February 20, 2015. Type Package
Type Package Package translater February 20, 2015 Title Bindings for the Google and Microsoft Translation APIs Version 1.0 Author Christopher Lucas and Dustin Tingley Maintainer Christopher Lucas
THE CHALLENGE OF ADMINISTERING WEBSITES OR APPLICATIONS THAT REQUIRE 24/7 ACCESSIBILITY
THE CHALLENGE OF ADMINISTERING WEBSITES OR APPLICATIONS THAT REQUIRE 24/7 ACCESSIBILITY As the constantly growing demands of businesses and organizations operating in a global economy cause an increased
Package hive. July 3, 2015
Version 0.2-0 Date 2015-07-02 Title Hadoop InteractiVE Package hive July 3, 2015 Description Hadoop InteractiVE facilitates distributed computing via the MapReduce paradigm through R and Hadoop. An easy
Package pdfetch. R topics documented: July 19, 2015
Package pdfetch July 19, 2015 Imports httr, zoo, xts, XML, lubridate, jsonlite, reshape2 Type Package Title Fetch Economic and Financial Time Series Data from Public Sources Version 0.1.7 Date 2015-07-15
Package empiricalfdr.deseq2
Type Package Package empiricalfdr.deseq2 May 27, 2015 Title Simulation-Based False Discovery Rate in RNA-Seq Version 1.0.3 Date 2015-05-26 Author Mikhail V. Matz Maintainer Mikhail V. Matz
Package fimport. February 19, 2015
Version 3000.82 Revision 5455 Date 2013-03-15 Package fimport February 19, 2015 Title Rmetrics - Economic and Financial Data Import Author Diethelm Wuertz and many others Depends R (>= 2.13.0), methods,
Coveo Platform 7.0. Oracle Knowledge Connector Guide
Coveo Platform 7.0 Oracle Knowledge Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing
VMware vcenter Log Insight User's Guide
VMware vcenter Log Insight User's Guide vcenter Log Insight 1.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.
IBM Tivoli Composite Application Manager for Microsoft Applications: Microsoft Internet Information Services Agent Version 6.3.1 Fix Pack 2.
IBM Tivoli Composite Application Manager for Microsoft Applications: Microsoft Internet Information Services Agent Version 6.3.1 Fix Pack 2 Reference IBM Tivoli Composite Application Manager for Microsoft
Wave Analytics External Data API Developer Guide
Wave Analytics External Data API Developer Guide Salesforce, Winter 16 @salesforcedocs Last updated: November 6, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered
Informatica Cloud Connector for SharePoint 2010/2013 User Guide
Informatica Cloud Connector for SharePoint 2010/2013 User Guide Contents 1. Introduction 3 2. SharePoint Plugin 4 3. Objects / Operation Matrix 4 4. Filter fields 4 5. SharePoint Configuration: 6 6. Data
API Reference Guide. API Version 1. Copyright Platfora 2016
API Reference Guide API Version 1 Copyright Platfora 2016 Last Updated: 10:05 a.m. April 21, 2016 Contents Document Conventions... 5 Contact Platfora Support...6 Copyright Notices... 6 Chapter 1: Using
Package brewdata. R topics documented: February 19, 2015. Type Package
Type Package Package brewdata February 19, 2015 Title Extracting Usable Data from the Grad Cafe Results Search Version 0.4 Date 2015-01-29 Author Nathan Welch Maintainer Nathan Welch
API Endpoint Methods NAME DESCRIPTION GET /api/v4/analytics/dashboard/ POST /api/v4/analytics/dashboard/ GET /api/v4/analytics/dashboard/{id}/ PUT
Last on 2015-09-17. Dashboard A Dashboard is a grouping of analytics Widgets associated with a particular User. API Endpoint /api/v4/analytics/dashboard/ Methods NAME DESCRIPTION GET /api/v4/analytics/dashboard/
Package HadoopStreaming
Package HadoopStreaming February 19, 2015 Type Package Title Utilities for using R scripts in Hadoop streaming Version 0.2 Date 2009-09-28 Author David S. Rosenberg Maintainer
Package LexisPlotR. R topics documented: April 4, 2016. Type Package
Type Package Package LexisPlotR April 4, 2016 Title Plot Lexis Diagrams for Demographic Purposes Version 0.3 Date 2016-04-04 Author [aut, cre], Marieke Smilde-Becker [ctb] Maintainer
Package erp.easy. September 26, 2015
Type Package Package erp.easy September 26, 2015 Title Event-Related Potential (ERP) Data Exploration Made Easy Version 0.6.3 A set of user-friendly functions to aid in organizing, plotting and analyzing
Programming Autodesk PLM 360 Using REST. Doug Redmond Software Engineer, Autodesk
Programming Autodesk PLM 360 Using REST Doug Redmond Software Engineer, Autodesk Introduction This class will show you how to write your own client applications for PLM 360. This is not a class on scripting.
Package missforest. February 20, 2015
Type Package Package missforest February 20, 2015 Title Nonparametric Missing Value Imputation using Random Forest Version 1.4 Date 2013-12-31 Author Daniel J. Stekhoven Maintainer
Deploying Microsoft Operations Manager with the BIG-IP system and icontrol
Deployment Guide Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Welcome to the BIG-IP LTM system -
Cloud Elements! Marketing Hub Provisioning and Usage Guide!
Cloud Elements Marketing Hub Provisioning and Usage Guide API Version 2.0 Page 1 Introduction The Cloud Elements Marketing Hub is the first API that unifies marketing automation across the industry s leading
Package RIGHT. March 30, 2015
Type Package Title R Interactive Graphics via HTML Version 0.2.0 Date 2015-03-30 Package RIGHT March 30, 2015 Author ChungHa Sung, TaeJoon Song, JongHyun Bae, SangGi Hong, Jae W. Lee, and Junghoon Lee
VMware vcenter Log Insight User's Guide
VMware vcenter Log Insight User's Guide vcenter Log Insight 1.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.
vcloud Air Platform Programmer's Guide
vcloud Air Platform Programmer's Guide vcloud Air OnDemand 5.7 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.
e11 Help Desk User Manual
e11 Help Desk User Manual Representative Section (Version 4.4) Page 1 of 30 Preface The e11 Helpdesk Representative Manual Version 4.4 is intended for the customer support representatives who are responsible
VoIP Probe 3.4. Functions, Parameters & Metrics for integration with HP Business Availability Center via HP Business Process Monitor
VoIP Probe 3.4 Functions, Parameters & Metrics for integration with HP Business Availability Center via HP Business Process Monitor ADVENAGE GmbH Blumenhagenstr. 10 D-30167 Hannover Germany March 2010
CLC Server Command Line Tools USER MANUAL
CLC Server Command Line Tools USER MANUAL Manual for CLC Server Command Line Tools 2.5 Windows, Mac OS X and Linux September 4, 2015 This software is for research purposes only. QIAGEN Aarhus A/S Silkeborgvej
There are numerous ways to access monitors:
Remote Monitors REMOTE MONITORS... 1 Overview... 1 Accessing Monitors... 1 Creating Monitors... 2 Monitor Wizard Options... 11 Editing the Monitor Configuration... 14 Status... 15 Location... 17 Alerting...
Package decompr. August 17, 2016
Version 4.5.0 Title Global-Value-Chain Decomposition Package decompr August 17, 2016 Two global-value-chain decompositions are implemented. Firstly, the Wang-Wei-Zhu (Wang, Wei, and Zhu, 2013) algorithm
Data Mailbox. support.ewon.biz. Reference Guide
Reference Guide RG 005-0-EN / Rev. 1.0 Data Mailbox The Data Mailbox is a Talk2M service that gathers ewon historical data and makes it available for third party applications in an easy way. support.ewon.biz
Package hive. January 10, 2011
Package hive January 10, 2011 Version 0.1-9 Date 2011-01-09 Title Hadoop InteractiVE Description Hadoop InteractiVE, is an R extension facilitating distributed computing via the MapReduce paradigm. It
NewsletterAdmin 2.4 Setup Manual
NewsletterAdmin 2.4 Setup Manual Updated: 7/22/2011 Contact: [email protected] Contents Overview... 2 What's New in NewsletterAdmin 2.4... 2 Before You Begin... 2 Testing and Production...
Package neuralnet. February 20, 2015
Type Package Title Training of neural networks Version 1.32 Date 2012-09-19 Package neuralnet February 20, 2015 Author Stefan Fritsch, Frauke Guenther , following earlier work
HireDesk API V1.0 Developer s Guide
HireDesk API V1.0 Developer s Guide Revision 1.4 Talent Technology Corporation Page 1 Audience This document is intended for anyone who wants to understand, and use the Hiredesk API. If you just want to
The ECL Scheduler. Boca Raton Documentation Team
The ECL Scheduler Boca Raton Documentation Team ECL Scheduler Boca Raton Documentation Team Copyright We welcome your comments and feedback about this document via email to
Manage Workflows. Workflows and Workflow Actions
On the Workflows tab of the Cisco Finesse administration console, you can create and manage workflows and workflow actions. Workflows and Workflow Actions, page 1 Add Browser Pop Workflow Action, page
Napster and Gnutella: a Comparison of two Popular Peer-to-Peer Protocols. Anthony J. Howe Supervisor: Dr. Mantis Cheng University of Victoria
Napster and Gnutella: a Comparison of two Popular Peer-to-Peer Protocols Anthony J Howe Supervisor: Dr Mantis Cheng University of Victoria February 28, 2002 Abstract This article presents the reverse engineered
Analytics Configuration Reference
Sitecore Online Marketing Suite 1 Analytics Configuration Reference Rev: 2009-10-26 Sitecore Online Marketing Suite 1 Analytics Configuration Reference A Conceptual Overview for Developers and Administrators
Field Properties Quick Reference
Field Properties Quick Reference Data types The following table provides a list of the available data types in Microsoft Office Access 2007, along with usage guidelines and storage capacities for each
SAP InfiniteInsight Explorer Analytical Data Management v7.0
End User Documentation Document Version: 1.0-2014-11 SAP InfiniteInsight Explorer Analytical Data Management v7.0 User Guide CUSTOMER Table of Contents 1 Welcome to this Guide... 3 1.1 What this Document
SRFax Fax API Web Services Documentation
SRFax Fax API Web Services Documentation Revision Date: July 2015 The materials and sample code are provided only for the purpose of an existing or potential customer evaluating or implementing a programmatic
DiskPulse DISK CHANGE MONITOR
DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com [email protected] 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product
Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc.
A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2011 Advanced Crystal Reports TeachUcomp, Inc. it s all about you Copyright: Copyright 2011 by TeachUcomp, Inc. All rights reserved.
Package hoarder. June 30, 2015
Type Package Title Information Retrieval for Genetic Datasets Version 0.1 Date 2015-06-29 Author [aut, cre], Anu Sironen [aut] Package hoarder June 30, 2015 Maintainer Depends
Package date. R topics documented: February 19, 2015. Version 1.2-34. Title Functions for handling dates. Description Functions for handling dates.
Package date February 19, 2015 Version 1.2-34 Title Functions for handling dates Functions for handling dates. Imports graphics License GPL-2 Author Terry Therneau [aut], Thomas Lumley [trl] (R port),
Getting Started with STATISTICA Enterprise Programming
Getting Started with STATISTICA Enterprise Programming 2300 East 14th Street Tulsa, OK 74104 Phone: (918) 749 1119 Fax: (918) 749 2217 E mail: mailto:[email protected] Web: www.statsoft.com
AusCERT Remote Monitoring Service (ARMS) User Guide for AusCERT Members
AusCERT Remote Monitoring Service (ARMS) User Guide for AusCERT Members Last updated: 27/06/2014 Contents 1 Introduction... 2 1.1 What is ARMS?... 2 1.2 Glossary Terms... 2 2 Setting up your ARMS configuration
Package RedditExtractoR
Type Package Title Reddit Data Extraction Toolkit Version 2.0.2 Package RedditExtractoR December 5, 2015 Imports RJSONIO, utils, igraph, grdevices, graphics Depends R (>= 3.2.0) Date 2015-12-05 Author
Package TimeWarp. R topics documented: April 1, 2015
Type Package Title Date Calculations and Manipulation Version 1.0.12 Date 2015-03-30 Author Tony Plate, Jeffrey Horner, Lars Hansen Maintainer Tony Plate
Availability Monitoring using Http Ping
Availability Monitoring using Http Ping With SAP Solution Manager 7.1 Introduction: This document describes how you can set up Http Ping metrics to monitor any URL. This is especially useful if you want
Creating SOAP and REST Services and Web Clients with Ensemble
Creating SOAP and REST Services and Web Clients with Ensemble Version 2015.1 11 February 2015 InterSystems Corporation 1 Memorial Drive Cambridge MA 02142 www.intersystems.com Creating SOAP and REST Services
New Mexico State University. AiM 8.X Basic AiM
New Mexico State University AiM 8.X Basic AiM January 22, 2015 Confidential Business Information This documentation is proprietary information of New Mexico State University (NMSU) and is not to be copied,
PageR Enterprise Monitored Objects - AS/400-5
PageR Enterprise Monitored Objects - AS/400-5 The AS/400 server is widely used by organizations around the world. It is well known for its stability and around the clock availability. PageR can help users
Windows Scheduled Task and PowerShell Scheduled Job Management Pack Guide for Operations Manager 2012
Windows Scheduled Task and PowerShell Scheduled Job Management Pack Guide for Operations Manager 2012 Published: July 2014 Version 1.2.0.500 Copyright 2007 2014 Raphael Burri, All rights reserved Terms
Package franc. R topics documented: November 12, 2015. Title Detect the Language of Text Version 1.1.1
Title Detect the Language of Text Version 1.1.1 Package franc November 12, 2015 Author Gabor Csardi, Titus Wormer, Maciej Ceglowski, Jacob R. Rideout, and Kent S. Johnson Maintainer Gabor Csardi
Package changepoint. R topics documented: November 9, 2015. Type Package Title Methods for Changepoint Detection Version 2.
Type Package Title Methods for Changepoint Detection Version 2.2 Date 2015-10-23 Package changepoint November 9, 2015 Maintainer Rebecca Killick Implements various mainstream and
WNMS Mobile Application
WNMS Mobile Application User s Guide Revision 1.0 18 October 2013 Copyright 2013 Deliberant www.deliberant.com Copyright 2013 Deliberant This user s guide and the software described in it are copyrighted
Infinitel HotSpotWeb User Manual
Infinitel HotSpotWeb User Manual INTRODUCTION... 5 REQUIREMENTS... 6 INSTALLATION... 7 FIRST STEP... 7 MICROSOFT WINDOWS... 7 Uninstall service... 7 OTHER OS... 7 ADVANCED INSTALLATION SETTINGS... 8 Application.properties
How To Use Saml 2.0 Single Sign On With Qualysguard
QualysGuard SAML 2.0 Single Sign-On Technical Brief Introduction Qualys provides its customer the option to use SAML 2.0 Single Sign On (SSO) authentication with their QualysGuard subscription. When implemented,
Commerce Services Documentation
Commerce Services Documentation This document contains a general feature overview of the Commerce Services resource implementation and lists the currently implemented resources. Each resource conforms
Package pxr. February 20, 2015
Type Package Title PC-Axis with R Version 0.40.0 Date 2013-06-11 Encoding UTF-8 Package pxr February 20, 2015 Maintainer Carlos J. Gil Bellosta The pxr package provides a set of
Package SHELF. February 5, 2016
Type Package Package SHELF February 5, 2016 Title Tools to Support the Sheffield Elicitation Framework (SHELF) Version 1.1.0 Date 2016-01-29 Author Jeremy Oakley Maintainer Jeremy Oakley
Aras Corporation. 2005 Aras Corporation. All rights reserved. Notice of Rights. Notice of Liability
Aras Corporation 2005 Aras Corporation. All rights reserved Notice of Rights All rights reserved. Aras Corporation (Aras) owns this document. No part of this document may be reproduced or transmitted in
Installing, Uninstalling, and Upgrading Service Monitor
CHAPTER 2 Installing, Uninstalling, and Upgrading Service Monitor This section contains the following topics: Preparing to Install Service Monitor, page 2-1 Installing Cisco Unified Service Monitor, page
Human Resources (HR) Query Basics
Human Resources (HR) Query Basics This course will teach you the concepts and procedures involved in finding public queries, creating private queries, and running queries in PeopleSoft 9.1 Query Manager.
Integrating VoltDB with Hadoop
The NewSQL database you ll never outgrow Integrating with Hadoop Hadoop is an open source framework for managing and manipulating massive volumes of data. is an database for handling high velocity data.
Package whoapi. R topics documented: June 26, 2015. Type Package Title A 'Whoapi' API Client Version 0.1.0 Date 2015-06-16 Author Oliver Keyes
Type Package Title A 'Whoapi' API Client Version 0.1.0 Date 2015-06-16 Author Oliver Keyes Package whoapi June 26, 2015 Maintainer Oliver Keyes Retrieve data from the 'Whoapi' (https://whoapi.com)
Spectrum Technology Platform. Version 9.0. Administration Guide
Spectrum Technology Platform Version 9.0 Administration Guide Contents Chapter 1: Getting Started...7 Starting and Stopping the Server...8 Installing the Client Tools...8 Starting the Client Tools...9
Content Filtering Client Policy & Reporting Administrator s Guide
Content Filtering Client Policy & Reporting Administrator s Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your system. CAUTION: A CAUTION
FileMaker Server 15. Custom Web Publishing Guide
FileMaker Server 15 Custom Web Publishing Guide 2004 2016 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks
